Skip to content

Commit

Permalink
Merge pull request #503 from cyberark/johnodon-flake
Browse files Browse the repository at this point in the history
Add ImagePullSecret to Helm deployment
  • Loading branch information
john-odonnell authored Mar 2, 2023
2 parents 7137964 + c448ecf commit 512d42a
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions deploy/1_check_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ check_env_var "APP_NAMESPACE_NAME"
if [[ "${DEV}" = "false" ]]; then
check_env_var "DOCKER_REGISTRY_PATH"
check_env_var "DOCKER_REGISTRY_URL"
check_env_var "IMAGE_PULL_SECRET"

if [[ "$PLATFORM" = "openshift" ]]; then
check_env_var "OPENSHIFT_USERNAME"
Expand Down
2 changes: 2 additions & 0 deletions deploy/summon/secrets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ common:
OPENSHIFT_USERNAME: ""
OPENSHIFT_PASSWORD: ""

IMAGE_PULL_SECRET: dockerpullsecret

gke:
GCLOUD_CLUSTER_NAME: !var ci/gke/rapid/cluster-name
GCLOUD_ZONE: !var ci/gke/zone
Expand Down
4 changes: 2 additions & 2 deletions deploy/test/test_cases/test_case_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -euxo pipefail
if [ "${DEV}" = "false" ]; then
announce "Creating image pull secret."
if [[ "${PLATFORM}" == "kubernetes" ]]; then
$cli_with_timeout delete --ignore-not-found secret dockerpullsecret
$cli_with_timeout delete --ignore-not-found secret $IMAGE_PULL_SECRET

$cli_with_timeout create secret docker-registry dockerpullsecret \
--docker-server="${PULL_DOCKER_REGISTRY_URL}" \
Expand All @@ -14,7 +14,7 @@ if [ "${DEV}" = "false" ]; then
elif [[ "$PLATFORM" == "openshift" ]]; then
$cli_with_timeout delete --ignore-not-found secrets dockerpullsecret

$cli_with_timeout create secret docker-registry dockerpullsecret \
$cli_with_timeout create secret docker-registry $IMAGE_PULL_SECRET \
--docker-server="${PULL_DOCKER_REGISTRY_PATH}" \
--docker-username=_ \
--docker-password=$($cli_with_timeout whoami -t) \
Expand Down
3 changes: 3 additions & 0 deletions deploy/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ runDockerCommand() {
-e CONJUR_DEPLOYMENT \
-e RUN_IN_DOCKER \
-e SUMMON_ENV \
-e IMAGE_PULL_SECRET \
-v $GCLOUD_SERVICE_KEY:/tmp$GCLOUD_SERVICE_KEY \
-v /var/run/docker.sock:/var/run/docker.sock \
-v ~/.config:/root/.config \
Expand Down Expand Up @@ -165,6 +166,7 @@ runDockerCommand() {
-e CONJUR_DEPLOYMENT \
-e RUN_IN_DOCKER \
-e SUMMON_ENV \
-e IMAGE_PULL_SECRET \
-v /var/run/docker.sock:/var/run/docker.sock \
-v ~/.config:/root/.config \
-v "$PWD/../helm":/helm \
Expand Down Expand Up @@ -286,6 +288,7 @@ fill_helm_chart() {
-e "s#{{ DEBUG }}# ${DEBUG:-"false"}#g" \
-e "s#{{ RETRY_COUNT_LIMIT }}# ${RETRY_COUNT_LIMIT:-"5"}#g" \
-e "s#{{ RETRY_INTERVAL_SEC }}# ${RETRY_INTERVAL_SEC:-"5"}#g" \
-e "s#{{ IMAGE_PULL_SECRET }}# ${IMAGE_PULL_SECRET:-""}#g" \
"$helm_path/helm/secrets-provider/ci/test-values-template.yaml" > "$helm_path/helm/secrets-provider/ci/${id}test-values-$UNIQUE_TEST_ID.yaml"
done
}
Expand Down
1 change: 1 addition & 0 deletions helm/secrets-provider/ci/test-values-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ secretsProvider:
imagePullPolicy: {{ IMAGE_PULL_POLICY }}
tag: {{ TAG }}
name: cyberark-secrets-provider-for-k8s
imagePullSecret: {{ IMAGE_PULL_SECRET }}

# Additional labels to apply to all resources.
labels: { {{ LABELS }} }
Expand Down
4 changes: 4 additions & 0 deletions helm/secrets-provider/templates/secrets-provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,9 @@ spec:
expirationSeconds: {{ .Values.environment.conjur.authnJWT.expiration }}
audience: {{ .Values.environment.conjur.authnJWT.audience }}
{{- end }}
{{- if .Values.secretsProvider.imagePullSecret }}
imagePullSecrets:
- name: {{ .Values.secretsProvider.imagePullSecret }}
{{- end }}
restartPolicy: Never
backoffLimit: 0
2 changes: 2 additions & 0 deletions helm/secrets-provider/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ secretsProvider:
name: cyberark-secrets-provider-for-k8s
# Optional: Kubernetes Job name. Defaults to Helm Release.
jobName:
# Optional: Name of image pull secret, if Secrets Provider image is in private repository
imagePullSecret:

# OPTIONAL: Additional labels to apply to Job resource.
labels: {}
Expand Down

0 comments on commit 512d42a

Please sign in to comment.