kubernetes-katas
kubernetes-katas copied to clipboard
Deliberate exercises for Kubernetes
Get inspired by: https://github.com/KamranAzeem/kubernetes-katas/blob/master/04-init-and-multi-container-pods.md
https://github.com/eficode-academy/kubernetes-katas/blob/master/03-rolling-updates.md#undo-update We are asking them to do a thing we would not recommend in real life. That is not good.
The first exercise is too extensive and should be split into two parts. 1. simple creation using the `create` command 2. creating and applying a manifest The explanation needed during...
It would make it easier for people to see the load balancing. One could also disect the name of the pod as `name of deployment, name of replicaset, name of...
Hi. I have recently been going through the training exercises you've made here. During 06-traefik-ingress exercises, I ran into issues with deploying the traefik ingress controller to my kubernetes cluster....
In the README file there is a link to the [deployments-ingress.md](https://github.com/eficode-academy/kubernetes-katas/blob/master/deployments-ingress.md), but you changed the file name but didn't change the path in README, and when you click it, it...
Either kubectl delete or kubectl delete -f for simplicity sake.
``` $ tree -L 2 . ├── done │ ├── backend-deployment.yaml │ ├── backend-svc.yaml │ ├── frontend-deployment.yaml │ ├── frontend-svc.yaml │ ├── postgres-configmap.yaml │ ├── postgres-deployment.yaml │ ├── postgres-secret.yaml │...