Merge pull request #4 from mikemonteith-livi/patch-1

Make it clear base64 encoding is not encryption
This commit is contained in:
2022-05-07 14:17:14 +10:00
committed by GitHub
+2 -2
View File
@@ -8,12 +8,12 @@ A Github action for using kubectl and helm to deploy applications to Kubernetes
### Set up `KUBE_CONFIG_DATA` secret
Have your `kubeconfig` file encrypted
Encode your `kubeconfig` file with base64 encoding.
```bash
cat $HOME/.kube/config | base64
```
Store the encrypted string as a secret with name `KUBE_CONFIG_DATA`, by navigating to your repo -> Settings -> Secrets -> Add a new secret
Store the encoded string as a secret with name `KUBE_CONFIG_DATA`, by navigating to your repo -> Settings -> Secrets -> Add a new secret
### Config a Github workflow