microk8s kubectl / docker mapping cheat sheet

Posted on June 11, 2021Tags , , ,   Leave a comment on microk8s kubectl / docker mapping cheat sheet

6/22/2021 Docker Command microk8s Command Notes docker ps -a microk8s kubectl get pods docker attach b55f695d4c06 microk8s kubectl attach -it b55f695d4c06 docker logs -f b55f695d4c06 microk8s kubectl logs -f mycontainer docker stop b55f695d4c06 &&docker rm b55f695d4c06 microk8s kubectl delete deployment mycontainer must delete the deployment before the pod. otherwise pod is recreated docker run -d –restart=always -e DOMAIN=mycluster –name mycontainer -p 443:443 mycontainer microk8s kubectl create deployment –image=mycontainer mycontainer docker exec b55f695d4c06 cat /etc/hosts microk8s kubectl exec b55f695d4c06 — cat … Continue reading “microk8s kubectl / docker mapping cheat sheet”

Install AWX 19.2.0 on Ubuntu 20.04

Posted on June 10, 2021June 11, 2021Tags , , , , ,   Leave a comment on Install AWX 19.2.0 on Ubuntu 20.04

Created: 6/10/2021 I’ve been pretty frustrated that the AWX community moved to Kubernetes deployments. I wanted to try to find the simplest solution to get this up and running. I can’t vouch for the security of this setup yet. It is a work in progress, and I will update it as I learn more. Running containers for years, I find Kubernetes very interesting. However, I’m stepping into this very slowly and carefully. I chose to configure the PostgreSQL database as … Continue reading “Install AWX 19.2.0 on Ubuntu 20.04”