Skip to content
Snippets Groups Projects
Commit c6586829 authored by Victor Morales's avatar Victor Morales Committed by Kubernetes Prow Robot
Browse files

Ensure /etc/bash_completion.d/ folder exists (#4543)

The Stateless ClearLinux feature[1] requires the creation of folders
in /etc folder. This change ensure the existence of the
/etc/bash_completion.d/ folder for ClearLinux Distribution.

[1] https://clearlinux.org/features/stateless
parent b1033856
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,14 @@
- inventory_hostname == groups['kube-master'][0]
environment: "{{proxy_env}}"
- name: Make sure bash_completion.d folder exists
file:
name: "/etc/bash_completion.d/"
state: directory
when:
- ((helm_container is defined and helm_container.changed) or (helm_task_result is defined and helm_task_result.changed))
- ansible_os_family in ["ClearLinux"]
- name: Helm | Set up bash completion
shell: "umask 022 && {{ bin_dir }}/helm completion bash >/etc/bash_completion.d/helm.sh"
when:
......
......@@ -42,6 +42,14 @@
- kubectl
- upgrade
- name: Make sure bash_completion.d folder exists
file:
name: "/etc/bash_completion.d/"
state: directory
when: ansible_os_family in ["ClearLinux"]
tags:
- kubectl
- name: Install kubectl bash completion
shell: "{{ bin_dir }}/kubectl completion bash >/etc/bash_completion.d/kubectl.sh"
when: ansible_os_family in ["Debian","RedHat"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment