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
Create simplens-chart repo | |
git clone https://github.com/<user>/simplens-chart | |
cd simplens-chart | |
helm create scratch-chart | |
find scratch-chart -print | |
That assumed I wanted to run an application on Kubernetes. None of it is relevant. | |
mkdir simplens simplens/templates | |
rm -rf scratch-chart | |
Create the following files: | |
Chart.yaml: |
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
Fork https://github.com/nghnam/kube-common-setup | |
git clone https://github.com/<user>/kube-common-setup | |
git remote add upstream https://github.com/nghnam/kube-common-setup | |
git remote set-url --push upstream no-push | |
git checkout -b patched –no-track | |
cd templates | |
vi namespace.yaml | |
Copy 6 labels lines and change to annotations: .,$s/labels/annotations/ | |
git commit -a | |
git push origin patched |