Atelier Kubeception
Statut : brouillon. Les notes ci-dessous décrivent le chemin nominal, le guide pédagogique complet reste à rédiger.
Déployer des clusters Kubernetes dans Kubernetes avec l’opérateur kubeception-operator : un etcd et un control-plane tournent comme des pods du cluster hôte, les workers sont des machines provisionnées via terraform-nodes/.
# Install operatorhelm repo add elssuy https://elssuy.github.io/helm-chartshelm repo updatehelm install kcop elssuy/kubeception-operator --version 0.0.2-alpha
# Deploy etcd & control-planekubectl create ns demokubectl apply -f etcd.yml -n demokubectl apply -f control-plane.yml -n demo
# Enroll a worker nodeCONTROL_PLANE_IP=NODE1_IP=ssh-keyscan $NODE1_IP >> ~/.ssh/known_hostsscp ../kubeception-operator/hack/setup-worker.sh