Browse Source

Merge pull request #7499 from mgugino-upstream-stage/oc-client-master

Fix references to oc client
Michael Gugino 7 years ago
parent
commit
d6668e243b

+ 1 - 1
roles/openshift_bootstrap_autoapprover/tasks/main.yml

@@ -19,7 +19,7 @@
 
 - name: Create auto-approver on cluster
   run_once: true
-  command: oc apply -f /tmp/openshift-approver/
+  command: "{{ openshift_client_binary }} apply -f /tmp/openshift-approver/"
 
 - name: Remove auto-approver config
   run_once: true

+ 2 - 2
roles/openshift_cloud_provider/tasks/vsphere-svc.yml

@@ -1,6 +1,6 @@
 ---
 - name: Check to see if the vsphere cluster role already exists
-  command: oc get clusterrole
+  command: "{{ openshift_client_binary}}  get clusterrole"
   register: cluster_role
 
 - block:
@@ -13,7 +13,7 @@
 
   - name: Create vsphere-svc on cluster
     run_once: true
-    command: oc create -f /tmp/vsphere-svc.yml
+    command: "{{ openshift_client_binary}} create -f /tmp/vsphere-svc.yml"
 
   - name: Remove vsphere-svc file
     run_once: true

+ 1 - 1
roles/openshift_control_plane/tasks/bootstrap.yml

@@ -3,7 +3,7 @@
 # oc_serviceaccounts_kubeconfig
 - name: create service account kubeconfig with csr rights
   command: >
-    oc serviceaccounts create-kubeconfig {{ openshift_master_csr_sa }} -n {{ openshift_master_csr_namespace }}
+    {{ openshift_client_binary }} serviceaccounts create-kubeconfig {{ openshift_master_csr_sa }} -n {{ openshift_master_csr_namespace }}
   register: kubeconfig_out
   until: kubeconfig_out.rc == 0
   retries: 24