Intro to K8s and Rancher - 2020-07-24

preview_player
Показать описание
This is the Rancher training with Adrian Goins from July 24, 2020. In 90 minutes Adrian teaches you everything you need to know to get started with Kubernetes and Rancher.
Рекомендации по теме
Комментарии
Автор

Enjoy your videos as usual but I struggled to follow along as probably many others when you went to the browser because your use of host names and domain names. I ended up using curl with a few cheats that others may appreciate. I used k3s instead of k3sup so I went through the demo on the controller node and accessed many of the services with localhost. (Not the best approach but that is why we learn on VMs so we build and destroy.) The ingress was only a ClusterIP so I needed an external IP address.

export IP=localhost
curl $IP:$(kubectl get service nginx --output
curl $IP:$(kubectl get service staging-nginx --output
curl $IP:$(kubectl get service prod-nginx --output

export IP=$(kubectl get ingress dev-demo-ingress --output
curl -H 'Host: training-a.cl.monach.us' $IP

wstrater