Use public container images for codegen as as defaults when deploying
Signed-off-by: Ryan Richard <richardry@vmware.com>
This commit is contained in:
parent
6d0b83aabf
commit
6c75de9334
@ -5,6 +5,6 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
#! Specify either an image_digest or an image_tag. If both are given, only image_digest will be used.
|
#! Specify either an image_digest or an image_tag. If both are given, only image_digest will be used.
|
||||||
image_repo: #! e.g. registry.example.com/your-project-name/repo-name
|
image_repo: docker.io/getpinniped/pinniped-server
|
||||||
image_digest: #! e.g. sha256:f3c4fdfd3ef865d4b97a1fd295d94acc3f0c654c46b6f27ffad5cf80216903c8
|
image_digest: #! e.g. sha256:f3c4fdfd3ef865d4b97a1fd295d94acc3f0c654c46b6f27ffad5cf80216903c8
|
||||||
image_tag: #! e.g. latest
|
image_tag: latest
|
||||||
|
@ -11,9 +11,9 @@ namespace: pinniped
|
|||||||
replicas: 2
|
replicas: 2
|
||||||
|
|
||||||
#! Specify either an image_digest or an image_tag. If both are given, only image_digest will be used.
|
#! Specify either an image_digest or an image_tag. If both are given, only image_digest will be used.
|
||||||
image_repo: #! e.g. registry.example.com/your-project-name/repo-name
|
image_repo: docker.io/getpinniped/pinniped-server
|
||||||
image_digest: #! e.g. sha256:f3c4fdfd3ef865d4b97a1fd295d94acc3f0c654c46b6f27ffad5cf80216903c8
|
image_digest: #! e.g. sha256:f3c4fdfd3ef865d4b97a1fd295d94acc3f0c654c46b6f27ffad5cf80216903c8
|
||||||
image_tag: #! e.g. latest
|
image_tag: latest
|
||||||
|
|
||||||
webhook_url: #! e.g., https://example.com
|
webhook_url: #! e.g., https://example.com
|
||||||
webhook_ca_bundle: #! e.g., LS0tLS1CRUdJTiBDRVJUSUZJQ0F...
|
webhook_ca_bundle: #! e.g., LS0tLS1CRUdJTiBDRVJUSUZJQ0F...
|
||||||
|
@ -13,7 +13,7 @@ export GO111MODULE="on"
|
|||||||
if [[ -z "${CONTAINED:-}" ]]; then
|
if [[ -z "${CONTAINED:-}" ]]; then
|
||||||
for kubeVersion in "${KUBE_VERSIONS[@]}"; do
|
for kubeVersion in "${KUBE_VERSIONS[@]}"; do
|
||||||
# CODEGEN_IMAGE is the container image to use when running
|
# CODEGEN_IMAGE is the container image to use when running
|
||||||
CODEGEN_IMAGE="gcr.io/tanzu-user-authentication/k8s-code-generator-$(echo "$kubeVersion" | cut -d"." -f1-2):latest"
|
CODEGEN_IMAGE="docker.io/getpinniped/k8s-code-generator-$(echo "$kubeVersion" | cut -d"." -f1-2):latest"
|
||||||
|
|
||||||
echo "generating code for ${kubeVersion} using ${CODEGEN_IMAGE}..."
|
echo "generating code for ${kubeVersion} using ${CODEGEN_IMAGE}..."
|
||||||
docker run --rm \
|
docker run --rm \
|
||||||
|
Loading…
Reference in New Issue
Block a user