Bonjour
Si vous voulez installer k0s pour sur votre serveur voici comment faire.
Installer k0s :
Debian / CentOS :
curl -sSLf https://get.k0s.sh | sudo sh
Configurer k0s en Single Node :
k0s install controller --single
k0s start
mkdir -p /etc/k0s
k0s config create > /etc/k0s/k0s.yaml
k0s status
k0s kubectl get pods --all-namespaces
k0s kubectl get nodes
Mettre à jour k0s :
k0s stop
curl -sSLf https://get.k0s.sh | sudo sh
k0s start
Installer Helm :
curl -sSLf https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash
Ajouter le Repo Bitnami :
helm repo add bitnami https://charts.bitnami.com/bitnami
Installer une Application depuis Helm :
helm repo update
helm install bitnami/wordpress --generate-name
Voilà vous avez installé k0s.