wojtek1902
wojtek1902

Reputation: 611

Use Ansible k8s to deploy pod to AKS

I have a question - is it possible to use Ansible k8s module (https://docs.ansible.com/ansible/2.6/modules/k8s_module.html) in order to deploy application to AKS (Azure Kubernetes Service)? If so, how could it be done? I'm struggling with that and have no idea. Thanks in advance for any help.

Upvotes: 0

Views: 1392

Answers (1)

4c74356b41
4c74356b41

Reputation: 72171

in this case problem was due to resource being deployed to a different namespace. this is how you would find those:

kubectl get all --all-namespace

Upvotes: 1

Related Questions