I need to deploy multiple microservices(payment,order) into different environments(dev,QA).
As per my analysis I hope we achieve this by following steps
Create separate clusters for different environments
Create multiple variable files based on environments.
we can pass only cluster name and variable file based on our deployment. so it will deploy according to our inputs.
I'm trying to implement the same, but I'm not sure how to configure the above scenarios by using ansible and helm part in real time.
Anyone please advise me on this ?
Reference https://docs.ansible.com/ansible/latest/collections/community/kubernetes/k8s_module.html
If you are planning to set the CI/CD and use the helm only you can deploy services without ansible.
Helm use the context once your context is set in CI/CD respective service will deploy to that specific environment.
You can just use the helm.
However with ansible
you can write the playbook which will use proper K8s context dev or QA and further ansible will deploy the helm simply.
Example playbook however you can remove the extra part if anything not required in your case
Github reference : https://github.com/sabre1041/ansible-helm-jenkins-demo