-
-
Notifications
You must be signed in to change notification settings - Fork 268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
kubernetes_kubelet_extra_args is futile #77
Comments
I've forgot to mention that this happens on at least Debian 10 with I've pinned the masking issue down to the ansible-role-kubernetes/defaults/main.yml Lines 9 to 10 in c27454a
After the installation,
This is caused by the The root cause seems to be the strange package constraints like |
+1 |
@edigaryev It seems I was able to get past it with the following configuration: ` kubernetes_packages:
` ` kubernetes_pod_network:
|
So, in retrospect, this has nothing to do with the I've elaborated a bit on the workaround by @matthew-mcdermott above and pushed changes in #79. |
Now, after kubernetes/release#1375 is merged, removing the There are, however, some issues that still persist on CentOS when running playbook that is similar to master branch and they both seem to be related to the GPG key. |
When Kubernetes 1.16 is deployed on a system with Docker configured with
native.cgroupdriver=systemd
, Kubelet (which defaults tocgroupfs
driver) fails to start:This failure in turn results in
kubelet
service being masked by systemd. And even if we try to setkubernetes_kubelet_extra_args
beforehand:...this will have no effect, since
kubelet-setup.yml
does nothing to unmask the service again, so the Kubernetes deployment fails withkubelet
service being in the masked state.This seems to be related to #4.
The text was updated successfully, but these errors were encountered: