Switch to GHCR tools images for local tests, with `imagePullPolicy: IfNotPresent`.

This is more consistent with our CI environment.

Signed-off-by: Matt Moyer <moyerm@vmware.com>
This commit is contained in:
Matt Moyer 2021-07-21 09:17:24 -05:00
parent fec59eb1bf
commit ae72d30cec
No known key found for this signature in database
GPG Key ID: EAE88AD172C5AE2D
5 changed files with 11 additions and 5 deletions

View File

@ -54,6 +54,7 @@ spec:
initContainers: initContainers:
- name: generate-certs - name: generate-certs
image: #@ data.values.cfssl_image image: #@ data.values.cfssl_image
imagePullPolicy: IfNotPresent
command: ["/bin/bash"] command: ["/bin/bash"]
args: args:
- -c - -c
@ -111,6 +112,7 @@ spec:
containers: containers:
- name: save-certs - name: save-certs
image: #@ data.values.kubectl_image image: #@ data.values.kubectl_image
imagePullPolicy: IfNotPresent
command: ["/bin/bash"] command: ["/bin/bash"]
args: args:
- -c - -c

View File

@ -69,6 +69,7 @@ spec:
containers: containers:
- name: dex - name: dex
image: #@ data.values.dex_image image: #@ data.values.dex_image
imagePullPolicy: IfNotPresent
command: command:
- /usr/local/bin/dex - /usr/local/bin/dex
- serve - serve

View File

@ -210,6 +210,7 @@ spec:
#! LDAP_SERVER_CONFIG_BEFORE_CUSTOM_LDIF_DIR and LDAP_SERVER_CONFIG_AFTER_CUSTOM_LDIF_DIR options. #! LDAP_SERVER_CONFIG_BEFORE_CUSTOM_LDIF_DIR and LDAP_SERVER_CONFIG_AFTER_CUSTOM_LDIF_DIR options.
#! See https://github.com/pinniped-ci-bot/bitnami-docker-openldap/tree/pinniped #! See https://github.com/pinniped-ci-bot/bitnami-docker-openldap/tree/pinniped
image: #@ data.values.ldap_image image: #@ data.values.ldap_image
imagePullPolicy: IfNotPresent
ports: ports:
- name: ldap - name: ldap
containerPort: 1389 containerPort: 1389

View File

@ -26,6 +26,7 @@ spec:
containers: containers:
- name: proxy - name: proxy
image: #@ data.values.proxy_image image: #@ data.values.proxy_image
imagePullPolicy: IfNotPresent
ports: ports:
- name: http - name: http
containerPort: 3128 containerPort: 3128
@ -48,6 +49,7 @@ spec:
failureThreshold: 2 failureThreshold: 2
- name: accesslogs - name: accesslogs
image: #@ data.values.proxy_image image: #@ data.values.proxy_image
imagePullPolicy: IfNotPresent
command: command:
- "/bin/sh" - "/bin/sh"
- "-c" - "-c"

View File

@ -27,8 +27,8 @@ pinny_bcrypt_passwd_hash:
pinny_ldap_password: pinny_ldap_password:
#! Images for each of the deployed test components. #! Images for each of the deployed test components.
dex_image: ghcr.io/dexidp/dex:v2.27.0 dex_image: ghcr.io/pinniped-ci-bot/test-dex:latest
ldap_image: projects.registry.vmware.com/pinniped/test-ldap:latest ldap_image: ghcr.io/pinniped-ci-bot/test-ldap:latest
proxy_image: projects.registry.vmware.com/pinniped/test-forward-proxy:latest proxy_image: ghcr.io/pinniped-ci-bot/test-forward-proxy:latest
cfssl_image: cfssl/cfssl:1.5.0 cfssl_image: ghcr.io/pinniped-ci-bot/test-cfssl:latest
kubectl_image: bitnami/kubectl:latest kubectl_image: ghcr.io/pinniped-ci-bot/test-kubectl:latest