-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NIT-994 pipeline for installing helm charts
- Loading branch information
Shahzad Chaudhry
committed
Dec 20, 2023
1 parent
a2f233f
commit e83c0c9
Showing
1 changed file
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,15 +36,22 @@ jobs: | |
uses: azure/setup-kubectl@v3 | ||
# with: | ||
# version: 'v1.28' # default is latest stable | ||
id: install | ||
id: kubectl_install | ||
|
||
- name: Install Helm | ||
uses: azure/[email protected] | ||
id: helm_install | ||
|
||
|
||
- name: Deploy to dev | ||
# shell: bash | ||
working-directory: ./alfresco-content-services | ||
run: | | ||
echo "===== Helm version ======" | ||
helm version | ||
echo "===== kubectl version ======" | ||
kubectl version | ||
# See this link how github action secrets are created: https://github.com/ministryofjustice/cloud-platform-terraform-serviceaccount | ||
# See this example on how to use github secrets: https://github.com/ministryofjustice/cloud-platform-example-application/blob/main/.github/workflows/deploy.yml#L38 | ||
echo "${{ secrets.KUBE_CERT }}" > ca.crt | ||
|