====== Kubernetes ====== - Vagrant local client deployment with [[https://gitlab.com/pilasguru/KubernetesAWS|Kubernetes at AWS repository]] - Start cluster - [[kops cluster mamagement]] - [[ekctl]] the official CLI for Amazon EKS - [[Kubernetes dashboard]] - [[Deploy example application]] * [[Contexts]] * [[Namespaces]] * [[Persistent Volumes AWS]] * [[helm]] * [[https://gitkube.sh|Gitkube]] ===== Manuales ===== * [[https://medium.com/payscale-tech/imperative-vs-declarative-a-kubernetes-tutorial-4be66c5d8914|Imperative vs. Declarative — a Kubernetes Tutorial]] * [[https://kubernetesbyexample.com/|Kubernetes By Example]] * [[https://leanpub.com/erase-una-vez-kubernetes/|Erase una vez Kubernetes]] (libro) **Fixes** kubectl expose deployment myapp --port 80 # let’s use the standard HTTP port, which we couldn’t use on our dev machine kubectl expose deployment myapp --port 3000 # let’s use the standard HTTP port, which we couldn’t use on our dev machine kubectl patch deployment myapp -p '{"spec":{"template":{"spec:{"nodeName":"'$NODE_NAME'"}}}}' Error from server (BadRequest): invalid character 'n' after object key kubectl patch deployment myapp -p '{spec:{template:{spec:{nodeName:ip-172-31-15-49.us-east-2.compute.internal}}}}' Error from server (BadRequest): invalid character 's' looking for beginning of object key string ===== Videos ===== * [[https://www.youtube.com/watch?v=dAby4G9Ysm8|Kubernetes 101: Una introducción al software que está revolucionando la nube]]