Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to refer to the Jammy stack #1235

Merged
merged 1 commit into from
Jun 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/stack.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ kind: ClusterStack
metadata:
name: base
spec:
id: "io.buildpacks.stacks.bionic"
id: "io.buildpacks.stacks.jammy"
buildImage:
image: "paketobuildpacks/build:base-cnb"
image: "paketobuildpacks/build-jammy-base"
runImage:
image: "paketobuildpacks/run:base-cnb"
image: "paketobuildpacks/run-jammy-base"
```

* `id`: The 'id' of the stack
Expand All @@ -46,4 +46,4 @@ The stack resource will not poll for updates. A CI/CD tool is needed to update t

### Suggested stacks

The [pack CLI](https://github.com/buildpacks/pack) command: `pack stack suggest` will display a list of recommended stacks that can be used. We recommend starting with the `io.buildpacks.stacks.bionic` base stack.
The [pack CLI](https://github.com/buildpacks/pack) command: `pack stack suggest` will display a list of recommended stacks that can be used. We recommend starting with the `io.buildpacks.stacks.jammy` base stack.
6 changes: 3 additions & 3 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ This tutorial will walk through creating a kpack [builder](builders.md) resource
metadata:
name: base
spec:
id: "io.buildpacks.stacks.bionic"
id: "io.buildpacks.stacks.jammy"
buildImage:
image: "paketobuildpacks/build:base-cnb"
image: "paketobuildpacks/build-jammy-base"
runImage:
image: "paketobuildpacks/run:base-cnb"
image: "paketobuildpacks/run-jammy-base"
```

Apply this stack to the cluster
Expand Down