From c69eabcb98911f695739d57c0644990d80e101e3 Mon Sep 17 00:00:00 2001 From: George Taylor Date: Thu, 8 Aug 2024 13:03:47 +0100 Subject: [PATCH] rename values files --- kustomize/poc/{values-poc.yaml => values.yaml} | 0 makefile | 4 +--- 2 files changed, 1 insertion(+), 3 deletions(-) rename kustomize/poc/{values-poc.yaml => values.yaml} (100%) diff --git a/kustomize/poc/values-poc.yaml b/kustomize/poc/values.yaml similarity index 100% rename from kustomize/poc/values-poc.yaml rename to kustomize/poc/values.yaml diff --git a/makefile b/makefile index 5a1c555..7c7672a 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,5 @@ # Define the Helm chart name and release name CHART_NAME := alfresco-content-services -VALUES := values.yaml -VALUES_ENV := values-$(ENV).yaml DEBUG := false ATOMIC := true @@ -41,7 +39,7 @@ helm_upgrade: yq '.metadata.annotations."nginx.ingress.kubernetes.io/whitelist-source-range" = strenv(extracted)' -i ./patch-ingress-share.yaml; \ helm repo add alfresco https://kubernetes-charts.alfresco.com/stable --force-update; \ helm upgrade --install $(CHART_NAME) alfresco/alfresco-content-services --version 6.0.2 --namespace $${NAMESPACE} \ - --values=../base/$(VALUES) --values=./$(VALUES_ENV) \ + --values=../base/values.yaml --values=./values.yaml \ --set s3connector.config.bucketName=$(BUCKET_NAME) \ --set global.tracking.sharedsecret=$${SECRET} $${ATOMIC_FLAG} $${DEBUG_FLAG} --wait --timeout=20m \ --post-renderer ../kustomizer.sh --post-renderer-args "$${HELM_POST_RENDERER_ARGS}"; \