summaryrefslogtreecommitdiffstats
path: root/roles/openshift_cli/tasks
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2015-11-23 15:21:23 -0500
committerScott Dodson <sdodson@redhat.com>2015-12-15 15:45:45 -0500
commit7a2891780e827513859628c7703cc1e7be53683f (patch)
tree54745bd070661ecf47e37fd3dff8898810ff2f3e /roles/openshift_cli/tasks
parentd3edce9c192c8d1eba572ba45ca25c06d0fbb830 (diff)
downloadopenshift-7a2891780e827513859628c7703cc1e7be53683f.tar.gz
openshift-7a2891780e827513859628c7703cc1e7be53683f.tar.bz2
openshift-7a2891780e827513859628c7703cc1e7be53683f.tar.xz
openshift-7a2891780e827513859628c7703cc1e7be53683f.zip
Add openshift_cli role
This role ensures that the clients package is installed or if it's a containerized install places a wrapper script in /usr/local/bin/openshift and symlinks for oc, oadm, and kubectl.
Diffstat (limited to 'roles/openshift_cli/tasks')
-rw-r--r--roles/openshift_cli/tasks/main.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/roles/openshift_cli/tasks/main.yml b/roles/openshift_cli/tasks/main.yml
new file mode 100644
index 000000000..c0ea66e70
--- /dev/null
+++ b/roles/openshift_cli/tasks/main.yml
@@ -0,0 +1,32 @@
+---
+- openshift_facts:
+ role: common
+ local_facts:
+ deployment_type: "{{ openshift_deployment_type }}"
+
+- name: Install clients
+ yum: pkg={{ openshift.common.service_type }}-clients state=installed
+ when: not openshift.common.is_containerized | bool
+
+- name: Pull CLI Image
+ command: >
+ docker pull {{ openshift.common.cli_image }}
+ when: openshift.common.is_containerized | bool
+
+- name: Create /usr/local/bin/openshift cli wrapper
+ template:
+ src: openshift.j2
+ dest: /usr/local/bin/openshift
+ mode: 0755
+ when: openshift.common.is_containerized | bool
+
+- name: Create client symlinks
+ file:
+ path: "{{ item }}"
+ state: link
+ src: /usr/local/bin/openshift
+ with_items:
+ - /usr/local/bin/oadm
+ - /usr/local/bin/oc
+ - /usr/local/bin/kubectl
+ when: openshift.common.is_containerized | bool \ No newline at end of file