Browse Source

kubeadm join path fixed for RH linux (#4798)

pull/4614/head
Vitaliy Dmitriev 5 years ago
committed by Kubernetes Prow Robot
parent
commit
333f1a4a40
1 changed files with 1 additions and 1 deletions
  1. 2
      roles/kubernetes/kubeadm/tasks/main.yml

2
roles/kubernetes/kubeadm/tasks/main.yml

@ -70,7 +70,7 @@
- name: Join to cluster if needed
environment:
PATH: "{{ bin_dir }}:{{ ansible_env.PATH }}"
PATH: "{{ bin_dir }}:{{ ansible_env.PATH }}:/sbin" # Make sure we can workaround RH / CentOS conservative path management
when: not is_kube_master and (not kubelet_conf.stat.exists)
block:

Loading…
Cancel
Save