These are some of the examples of my brain dump while working with kubernetes, exploring various aspects. These examples are just as reference guide.
I have been using the kubernetes plugin in intellij, which helps in a lot of the autocomplete features.
Kubernetes Plugin: https://plugins.jetbrains.com/plugin/10485-kubernetes
Top level directory contain sample deployment and sample pod descriptors.
start the multi-node kind kuberneted cluster with the following command.
kind create cluster --name cluster-1 --config kind-cluster-config.yaml
kind delete cluster --name cluster-1