Skip to content

Commit

Permalink
Move to Paketo full tag builder image
Browse files Browse the repository at this point in the history
This is a follow up from shipwright-io#406

I tested if the container images that we build with Paketo can be deployed
with the bionic stack via [test branch](6ff4ece).

Moving from `builder:latest` to `builder:full` means that we are gonna stop
running on top of a cflinuxfs3 stack in favor of a bionic stack.

Paketo community mentioned that the bionic stack have parity with cflinuxfs3,
therefore this is a safe change, plus the deployment validations I did.
  • Loading branch information
qu1queee committed Oct 8, 2020
1 parent d364064 commit 4521bfa
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
3 changes: 2 additions & 1 deletion docs/buildstrategies.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ The [buildpacks-v3][buildpacks] BuildStrategy/ClusterBuildStrategy uses a Cloud

- [`heroku/buildpacks:18`][hubheroku]
- [`cloudfoundry/cnb:bionic`][hubcloudfoundry]
- [`docker.io/paketobuildpacks/builder:latest`](https://hub.docker.com/r/paketobuildpacks/builder/tags)
- [`docker.io/paketobuildpacks/builder:full`](https://hub.docker.com/r/paketobuildpacks/builder/tags)


### Installing Buildpacks v3 Strategy

Expand Down
10 changes: 5 additions & 5 deletions docs/proposals/buildstrategy-steps-resources.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ metadata:
spec:
buildSteps:
- name: step-prepare
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 0
capabilities:
Expand All @@ -179,7 +179,7 @@ spec:
cpu: "10m"
memory: "128Mi"
- name: step-detect
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -199,7 +199,7 @@ spec:
cpu: "250m"
memory: "50Mi"
- name: step-restore
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -214,7 +214,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-build
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -235,7 +235,7 @@ spec:
cpu: "500m"
memory: "1Gi"
- name: step-export
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
spec:
buildSteps:
- name: step-prepare
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 0
capabilities:
Expand All @@ -26,7 +26,7 @@ spec:
cpu: 250m
memory: 65Mi
- name: step-detect
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -46,7 +46,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-restore
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -68,7 +68,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-build
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -89,7 +89,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-export
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ metadata:
spec:
buildSteps:
- name: step-prepare
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 0
capabilities:
Expand All @@ -26,7 +26,7 @@ spec:
cpu: 250m
memory: 65Mi
- name: step-detect
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -46,7 +46,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-restore
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -68,7 +68,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-build
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand All @@ -89,7 +89,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-export
image: docker.io/paketobuildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:full
securityContext:
runAsUser: 1000
command:
Expand Down

0 comments on commit 4521bfa

Please sign in to comment.