mvallim / kubernetes-under-the-hood

This tutorial is someone planning to install a Kubernetes cluster and wants to understand how everything fits together.
https://mvallim.github.io/kubernetes-under-the-hood
BSD 3-Clause "New" or "Revised" License
472 stars 105 forks source link

fix(debian kube-mast): :bug: fix unknown service runtime.v1alpha2.Run… #132

Closed shaharby7 closed 1 year ago

shaharby7 commented 1 year ago

…timeService.

when trying to install the kube mast on a debian image you get " unknown service runtime.v1alpha2.RuntimeService." due to the fact that the installation of 'containerd' from the default debian repository is not updated (for reference - https://github.com/containerd/containerd/issues/4581). To fix it I added the repository of containrd and installed from their, a documentation of how to do it as a reference can be found here - https://docs.docker.com/engine/install/debian/#uninstall-old-versions.

mvallim commented 1 year ago

Thanks for your contribution.