Skip to content

Commit

Permalink
NIT-994 pipeline for installing helm charts
Browse files Browse the repository at this point in the history
  • Loading branch information
Shahzad Chaudhry committed Dec 20, 2023
1 parent 9407686 commit ad39008
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cloud-platform-deploy-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ jobs:
kubectl get all
# Helm will not deploy unless this secret is present. Create a new one if one does not already exist from env section
export SECRET = $(awk '{print substr($0, 19)}' <<< $(kubectl get secrets alfresco-content-services-alfresco-repository-properties-secret -o jsonpath='{.data.alfresco-global\.properties}' | base64 -d)) 2> /dev/null
SECRET=$(awk '{print substr($0, 19)}' <<< $(kubectl get secrets alfresco-content-services-alfresco-repository-properties-secret -o jsonpath='{.data.alfresco-global\.properties}' | base64 -d)) 2> /dev/null
# if [ -z ${SECRET} ]
# then
# export SECRET=$(openssl rand -base64 20)
# SECRET=$(openssl rand -base64 20)
# fi
# # Upgrad an existing release or create a new one if one does not exist
Expand Down

0 comments on commit ad39008

Please sign in to comment.