This file contains hidden or 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
| helmDefaults: | |
| tillerless: true | |
| tillerNamespace: platform | |
| atomic: true | |
| verify: false | |
| wait: false | |
| timeout: 600 | |
| recreatePods: false | |
| force: true |
This file contains hidden or 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
| #!/bin/bash | |
| SC_NAME=${SC_NAME:-"Service Connection Name"} | |
| KEYVAULTNAME=${KEYVAULTNAME:-"keyvault"} | |
| AZ_SUBSCRIPTION=${AZ_SUBSCRIPTION:-"Azure Subscription"} | |
| AZ_SUBSCRIPTION_ID=${AZ_SUBSCRIPTION_ID:-"Azure Subscription ID"} | |
| ADO_ORG=${ADO_ORG:-"https://dev.azure.com/myorgname"} | |
| ADO_PROJECT=${ADO_PROJECT:-"MyProject"} | |
| SECRET_TEMPLATE=${SECRET_TEMPLATE:-"./secret-var-group.tpl"} | |
| echo "STAGE: ${STAGE}" |
This file contains hidden or 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
| { | |
| "authorized": true, | |
| "description": "${description}", | |
| "name": "${name}", | |
| "type": "AzureKeyVault", | |
| "variableGroupProjectReferences": [ | |
| { | |
| "projectReference": { | |
| "id": "${project_id}", | |
| "name": "${project_name}" |
This file contains hidden or 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
| { | |
| "authorized": true, | |
| "description": "SuperSecret Variable Group (SuperSecretVault)", | |
| "name": "SuperSecret", | |
| "type": "AzureKeyVault", | |
| "variableGroupProjectReferences": [ | |
| { | |
| "projectReference": { | |
| "id": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", | |
| "name": "MyADOProject" |
This file contains hidden or 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
| AZ_SUBSCRIPTION=<subscription name> | |
| AZ_SUBSCRIPTION_ID=<subscription id> | |
| ADO_ORG=<ADO Org Name> | |
| ADO_PROJECT=<ADO Project Name> | |
| KEYVAULTNAME=<Key Vault to link ADO Group with> | |
| SC_NAME=<service connection name> |
This file contains hidden or 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
| az extension add --name azure-devops |
This file contains hidden or 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
| helm plugin install https://github.com/aslafy-z/helm-git.git |
This file contains hidden or 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
| plugin install https://github.com/thomastaylor312/helm-namespace |
This file contains hidden or 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
| - events: ["presync"] | |
| showlogs: true | |
| command: "/bin/sh" | |
| args: | |
| - "-c" | |
| - >- | |
| kubectl get namespace "{{`{{ .Release.Namespace }}`}}" >/dev/null 2>&1 || kubectl create namespace "{{`{{ .Release.Namespace }}`}}"; |
This file contains hidden or 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
| helmDefaults: | |
| tillerless: true | |
| tillerNamespace: platform | |
| atomic: false | |
| verify: false | |
| wait: true | |
| timeout: 1200 | |
| recreatePods: true | |
| force: true |