From 9afab6c9eb041e87ee70ca86687f6ed7f9b2cb78 Mon Sep 17 00:00:00 2001 From: Vegard Hagen Date: Thu, 22 Jun 2023 20:40:24 +0200 Subject: [PATCH] docs: Update README with `containerd` troubleshooting --- QUICKSTART.md | 2 +- README.md | 22 +++++++++++++++++++--- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/QUICKSTART.md b/QUICKSTART.md index 6351c4a..ec43bba 100644 --- a/QUICKSTART.md +++ b/QUICKSTART.md @@ -55,5 +55,5 @@ kubectl kustomize --enable-helm infra/traefik | kubectl apply -f - https://argo-cd.readthedocs.io/en/stable/getting_started/ ```shell -kubectl apply -k infra/traefik +kubectl apply -k infra/argocd ``` \ No newline at end of file diff --git a/README.md b/README.md index b0df558..de16c12 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ kubectl apply -f infra/metallb Install Traefik ```shell -kubectl kustomize --enable-helm infra/traefik | ku apply -f - +kubectl kustomize --enable-helm infra/traefik | kubectl apply -f - ``` ## Port forward Traefik @@ -143,7 +143,7 @@ at [https://whoami.${DOMAIN}](https://whoami.${DOMAIN}) [ArgoCD](https://argo-cd.readthedocs.io/en/stable/getting_started/) is configured to bootstrap the rest of the cluster ```shell -kubectl apply -k infra/traefik +kubectl apply -k infra/argocd ``` # Kubernetes Dashboard @@ -172,6 +172,10 @@ version `v1alpha2` ([link](https://kubernetes.io/blog/2022/11/18/upcoming-change Make sure that `runc` is properly configured in containerd. +NB: Make sure the correct `containerd` daemon is running. +(Check the loaded `containerd` service definition as reported by `systemctl status containerd`) +Follow https://github.com/containerd/containerd/blob/main/docs/getting-started.md for further instructions. + ```shell sudo cat /etc/containerd/config.toml ``` @@ -180,4 +184,16 @@ sudo cat /etc/containerd/config.toml [plugins."io.containerd.grpc.v1.cri".containerd.runtimes.runc] runtime_path = "/usr/bin/runc" runtime_type = "io.containerd.runc.v2" -``` \ No newline at end of file +``` + +## Wrong containerd version + +1.7.x doesn't work? + +## Traefik CRDS + +Apply manually :( + +## Sealed Secrets + +Restart pod after applying master-key \ No newline at end of file