Reputation: 611
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
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