From c405256377e293a34606cdff694d69b170e4af88 Mon Sep 17 00:00:00 2001 From: Colin Dembovsky Date: Thu, 22 Apr 2021 10:32:13 -0500 Subject: [PATCH] Updated Deployment With GitHub Actions (markdown) --- Deployment-With-GitHub-Actions.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Deployment-With-GitHub-Actions.md b/Deployment-With-GitHub-Actions.md index 6f35ef1..c0d7545 100644 --- a/Deployment-With-GitHub-Actions.md +++ b/Deployment-With-GitHub-Actions.md @@ -164,7 +164,7 @@ The workflows require a number of secrets in order to work. Select the **Setting Secret Name|Description|Example ---|-------|--- -`AZURE_CREDENTIALS`|`JSON` with credentials for a Service Principle with access to the container registry and AKS cluster|`{ 'clientId': "", "clientSecret": "", "tenantId": "", "subscriptionId": "" }` +`AZURE_CREDENTIALS`|`JSON` with credentials for a Service Principle with access to the container registry and AKS cluster. Further instructions can be found[here](https://github.com/marketplace/actions/azure-login#configure-deployment-credentials)|`{ 'clientId': "", "clientSecret": "", "tenantId": "", "subscriptionId": "" }` `CLUSTER_NAME`|Name of the AKS cluster|`myeshop` `PASSWORD`|Admin password for ACR|Retrieve this from the container registry blade in the Azure portal `REGISTRY_ENDPOINT`|Endpoint for container registry|FQDN of registry and container|`myeshopacr.azurecr.io/eshop` @@ -172,6 +172,8 @@ Secret Name|Description|Example `RESOURCE_GROUP`|Name of resource group containing AKS cluster|`myeshop-rg` `USERNAME`|Admin username for ACR (typically name of ACR)|`myeshopacr` +> **Note**: To fetch the `AZURE_CREDENTIALS`, follow . + When you are done, the secrets should look something like this: ![Repository secrets](./images/Deployment-With-GitHub-Actions/repo-secrets.jpg)