Skip to content
Snippets Groups Projects
Commit b2a27ed0 authored by Matthew Mosesohn's avatar Matthew Mosesohn
Browse files

Fix bash completion installation

parent d8ae5080
No related branches found
No related tags found
No related merge requests found
...@@ -11,21 +11,19 @@ ...@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment