From f3827ddf5750027b2d0844dab8b68e05487403e5 Mon Sep 17 00:00:00 2001 From: Robert Pothier Date: Thu, 12 Aug 2021 16:18:02 -0400 Subject: [PATCH] In conjur-oss-helm-chart the release name defaults to conjur-oss and with (#163) that is the service name. Now in conjur-authn-k8s-client the release name has a unique id that is passed into conjur-oss-helm-chart. This change will keep the service name to conjur-oss reguardless of the release name. --- examples/common/2_helm_install_or_upgrade_conjur.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/common/2_helm_install_or_upgrade_conjur.sh b/examples/common/2_helm_install_or_upgrade_conjur.sh index 9639dc5..3d6affa 100755 --- a/examples/common/2_helm_install_or_upgrade_conjur.sh +++ b/examples/common/2_helm_install_or_upgrade_conjur.sh @@ -49,6 +49,7 @@ args+=("-n" "$CONJUR_NAMESPACE" \ if [[ "$PLATFORM" == "openshift" ]]; then args+=("--set" "image.repository=$IMAGE_REPOSITORY" \ "--set" "image.tag=$IMAGE_TAG" \ + "--set" "fullnameOverride=conjur-oss" \ "--set" "nginx.image.repository=$NGINX_REPOSITORY" \ "--set" "nginx.image.tag=$NGINX_TAG" \ "--set" "postgres.image.repository=$POSTGRES_REPOSITORY" \