Hey,
I have installed ansible awx using kubernates/minikube version 1.1.3.
i have created 1 docker ubuntu container and i am trying to install nginx and start ngnix inside that ubuntu container and localhost.
while running playbook , everything is working except it is not able to start nginx inside container.
I am getting error service is in unknown start .
I am attcahing output of this playbook with this mail.
some info : 172.16.145.49 is my localhost while 172.19.0.2 is my container
How to debug that?
my playbook :
|
hosts: all |
become: true |
connection: ssh |
tasks: |
|
debug: |
msg: “Hello World!” |
|
apt: name=nginx state=latest |
|
service: |
name: nginx |