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

Switch from GCR to DockerHub #406

Merged
merged 1 commit into from
Sep 25, 2020
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
2 changes: 1 addition & 1 deletion docs/buildstrategies.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ The [buildpacks-v3][buildpacks] BuildStrategy/ClusterBuildStrategy uses a Cloud

- [`heroku/buildpacks:18`][hubheroku]
- [`cloudfoundry/cnb:bionic`][hubcloudfoundry]
- [`gcr.io/paketo-buildpacks/builder:latest`](https://console.cloud.google.com/gcr/images/paketo-buildpacks/GLOBAL/builder?gcrImageListsize=30)
- [`docker.io/paketobuildpacks/builder:latest`](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: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 0
capabilities:
Expand All @@ -179,7 +179,7 @@ spec:
cpu: "10m"
memory: "128Mi"
- name: step-detect
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -199,7 +199,7 @@ spec:
cpu: "250m"
memory: "50Mi"
- name: step-restore
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -214,7 +214,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-build
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -235,7 +235,7 @@ spec:
cpu: "500m"
memory: "1Gi"
- name: step-export
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
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: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 0
capabilities:
Expand All @@ -26,7 +26,7 @@ spec:
cpu: 250m
memory: 65Mi
- name: step-detect
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -46,7 +46,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-restore
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -68,7 +68,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-build
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -89,7 +89,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-export
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
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: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 0
capabilities:
Expand All @@ -26,7 +26,7 @@ spec:
cpu: 250m
memory: 65Mi
- name: step-detect
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -46,7 +46,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-restore
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -68,7 +68,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-build
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand All @@ -89,7 +89,7 @@ spec:
- name: layers-dir
mountPath: /layers
- name: step-export
image: gcr.io/paketo-buildpacks/builder:latest
image: docker.io/paketobuildpacks/builder:latest
securityContext:
runAsUser: 1000
command:
Expand Down