I am trying to create a Helm chart (x) with 5 deployments within chart (x) in a specific order:
- Deployment 1 ( zk)
- Deployment 2 (security)
- Deployment 3 (localmaster)
- Deployment 4 (nginx)
- Deployment 5 (semoss)
Helm/Tiller version: "v2.12.3" Kubectl version: Major:"1", Minor:"17" Minikube version: v1.6.2
What I currently have: RESOURCES: ==> v1/Deployment
NAME
- Localmaster
- Nginx
- Security
- Semoss
- Zk
I can easily deploy chart (x) but once I run helm ls, my (x) chart is in a random order as you can see above. I only have one chart name (x) and within (x) I have:
Chart.yaml charts templates values.yaml
Templates and charts are directories and the rest are files. Is there a specific way or trick to have my x (chart) in the order I want? I’ve done some research and I am not so sure if helm spray in the right call as I am trying to deploy 1 chart with different deployment as opposed to an umbrella chart, and many other sub-charts. Let me know if you need more info.