Browse Source

Merge pull request #2148 from tbielawa/shell_completion

Install bash-completion package for the oc/oadm tools
Scott Dodson 8 years ago
parent
commit
d360c65c2a
1 changed files with 3 additions and 0 deletions
  1. 3 0
      roles/openshift_master/tasks/main.yml

+ 3 - 0
roles/openshift_master/tasks/main.yml

@@ -27,6 +27,9 @@
   action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-master{{ openshift_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }} state=present"
   when: not openshift.common.is_containerized | bool
 
+- name: Install bash completion for oc tools
+  action: "{{ ansible_pkg_mgr }} name=bash-completion state=present"
+
 - name: Pull master image
   command: >
     docker pull {{ openshift.master.master_image }}{{ ':' + openshift_version if openshift_version is defined and openshift_version != '' else '' }}