Using AWX 19.0.3
AWX Operator :- https://github.com/ansible/awx-operator
I am trying to create a custom virtual env for my project inside awx-task container in awx-operator pod.
ubuntu@ubuntu-virtual-machine:~$ kubectl get pods -n awx
NAME READY STATUS RESTARTS AGE
awx-demo-7bbb564887-88787 4/4 Running 0 4d2h
awx-demo-postgres-0 1/1 Running 0 4d2h
awx-operator-5bb758876d-7swl4 1/1 Running 0 4d2h
ubuntu@ubuntu-virtual-machine:~$
ubuntu@ubuntu-virtual-machine:~$ kubectl exec -it awx-demo-7bbb564887-88787 -c awx-demo-task /bin/sh -n awx
kubectl exec [POD] [COMMAND] is DEPRECATED and will be removed in a future version. Use kubectl exec [POD] – [COMMAND] instead.
sh-4.4$ whoami
awx
Inside the container while creating the directory or any write operation giving permission denied.
sh-4.4$ mkdir cust_Env
mkdir: cannot create directory ‘cust_Env’: Permission denied
sh-4.4$
Dont know what the awx default password being set by deployment. Any IDEA what is the default password. Please help in creating the custom virtual env for AWX project.
Thanks,
Ashutosh