Fix bash completion installation
This commit is contained in:
parent
d8ae50800a
commit
b2a27ed089
1 changed files with 7 additions and 9 deletions
|
@ -11,21 +11,19 @@
|
||||||
changed_when: false
|
changed_when: false
|
||||||
tags: [hyperkube, kubectl, upgrade]
|
tags: [hyperkube, kubectl, upgrade]
|
||||||
|
|
||||||
- name: Gather kubectl bash completion
|
- name: Install kubectl bash completion
|
||||||
command: "{{ bin_dir }}/kubectl completion bash"
|
shell: "{{ bin_dir }}/kubectl completion bash >/etc/bash_completion.d/kubectl.sh"
|
||||||
no_log: true
|
#no_log: true
|
||||||
register: kubectl_bash_completion
|
|
||||||
when: ansible_os_family in ["Debian","RedHat"]
|
when: ansible_os_family in ["Debian","RedHat"]
|
||||||
tags: kubectl
|
tags: kubectl
|
||||||
|
|
||||||
- name: Write kubectl bash completion
|
- name: Set kubectl bash completion file
|
||||||
copy:
|
file:
|
||||||
content: "{{ kubectl_bash_completion.stdout }}"
|
path: /etc/bash_completion.d/kubectl.sh
|
||||||
dest: /etc/bash_completion.d/kubectl.sh
|
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
mode: 0755
|
mode: 0755
|
||||||
when: ansible_os_family in ["Debian","RedHat"] and kubectl_bash_completion.changed
|
when: ansible_os_family in ["Debian","RedHat"]
|
||||||
tags: [kubectl, upgrade]
|
tags: [kubectl, upgrade]
|
||||||
|
|
||||||
- name: Write kube-apiserver manifest
|
- name: Write kube-apiserver manifest
|
||||||
|
|
Loading…
Reference in a new issue