vsphere-svc.yml 567 B

123456789101112131415161718192021222324
  1. ---
  2. - name: Check to see if the vsphere cluster role already exists
  3. command: oc get clusterrole
  4. register: cluster_role
  5. - block:
  6. - name: Create svc acccount file
  7. copy:
  8. dest: /tmp/vsphere-svc.yml
  9. src: vsphere-svc.yml
  10. owner: root
  11. mode: 0400
  12. - name: Create vsphere-svc on cluster
  13. run_once: true
  14. command: oc create -f /tmp/vsphere-svc.yml
  15. - name: Remove vsphere-svc file
  16. run_once: true
  17. file:
  18. path: /tmp/vsphere-svc.yml
  19. state: absent
  20. when: "'system:vsphere-cloud-provider' not in cluster_role.stdout"