From 77c7db379bc99049fb3a63179db8ad80d5faec38 Mon Sep 17 00:00:00 2001 From: Deepak Sattiraju Date: Mon, 23 Sep 2019 13:56:32 +0530 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index e185df7c..61d8483d 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Used for setting the target K8s cluster context which will be used by other actions like [`azure/k8s-deploy`](https://github.com/Azure/k8s-actions/tree/master/k8s-deploy), [`azure/k8s-create-secret`](https://github.com/Azure/k8s-actions/tree/master/k8s-create-secret) etc. or run any kubectl commands. ```yaml -- uses: azure/k8s-actions/k8s-set-context@master +- uses: azure/k8s-set-context@v1 with: kubeconfig: ''v# Use secret (https://developer.github.com/actions/managing-workflows/storing-secrets/) context: '' # Optional, uses the current-context from kubeconfig by default @@ -11,14 +11,14 @@ Used for setting the target K8s cluster context which will be used by other acti ``` ```yaml -- uses: azure/k8s-actions/k8s-set-context@master +- uses: azure/k8s-set-context@v1 with: k8s-url: '' k8s-secret: '' # token value from the result of the below script id: login ``` -Use secret (https://developer.github.com/actions/managing-workflows/storing-secrets/) in workflow for kubeconfig or k8s-values. +[Use secrets](https://developer.github.com/actions/managing-workflows/storing-secrets/) in workflow for using kubeconfig or k8s-values. PS: `kubeconfig` takes precedence (i.e. kubeconfig would be created using the value supplied in kubeconfig) @@ -60,7 +60,7 @@ kubectl get secret -n -o json ## Using secret for Kubeconfig or Service Account Now add the values as [a secret](https://developer.github.com/actions/managing-workflows/storing-secrets/) in the GitHub repository. In the example below the secret name is `KUBE_CONFIG` and it can be used in the workflow by using the following syntax: ```yaml - - uses: azure/k8s-actions/k8s-set-context@master + - uses: azure/k8s-set-context@v1 with: kubeconfig: ${{ secrets.KUBE_CONFIG }} ```