main.yaml 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ---
  2. - fail:
  3. msg: "The openshift_manageiq role requires OpenShift Enterprise 3.1 or Origin 1.1."
  4. when: not openshift.common.version_gte_3_1_or_1_1 | bool
  5. - name: Copy Configuration to temporary conf
  6. command: >
  7. cp {{ openshift.common.config_base }}/master/admin.kubeconfig {{manage_iq_tmp_conf}}
  8. changed_when: false
  9. - name: Add Management Infrastructure project
  10. command: >
  11. {{ openshift.common.client_binary }} adm new-project
  12. management-infra
  13. --description="Management Infrastructure"
  14. --config={{manage_iq_tmp_conf}}
  15. register: osmiq_create_mi_project
  16. failed_when: "'already exists' not in osmiq_create_mi_project.stderr and osmiq_create_mi_project.rc != 0"
  17. changed_when: osmiq_create_mi_project.rc == 0
  18. - name: Create Admin and Image Inspector Service Account
  19. oc_serviceaccount:
  20. kubeconfig: "{{ openshift_master_config_dir }}/admin.kubeconfig"
  21. name: "{{ item }}"
  22. namespace: management-infra
  23. state: present
  24. with_items:
  25. - management-admin
  26. - inspector-admin
  27. - name: Create Cluster Role
  28. shell: >
  29. echo {{ manageiq_cluster_role | to_json | quote }} |
  30. {{ openshift.common.client_binary }} create
  31. --config={{manage_iq_tmp_conf}}
  32. -f -
  33. register: osmiq_create_cluster_role
  34. failed_when: "'already exists' not in osmiq_create_cluster_role.stderr and osmiq_create_cluster_role.rc != 0"
  35. changed_when: osmiq_create_cluster_role.rc == 0
  36. - name: Create Hawkular Metrics Admin Cluster Role
  37. shell: >
  38. echo {{ manageiq_metrics_admin_clusterrole | to_json | quote }} |
  39. {{ openshift.common.client_binary }}
  40. --config={{manage_iq_tmp_conf}}
  41. create -f -
  42. register: oshawkular_create_cluster_role
  43. failed_when: "'already exists' not in oshawkular_create_cluster_role.stderr and oshawkular_create_cluster_role.rc != 0"
  44. changed_when: oshawkular_create_cluster_role.rc == 0
  45. # AUDIT:changed_when_note: Checking the return code is insufficient
  46. # here. We really need to verify the if the role even exists before
  47. # we run this task.
  48. - name: Configure role/user permissions
  49. command: >
  50. {{ openshift.common.client_binary }} adm {{item}}
  51. --config={{manage_iq_tmp_conf}}
  52. with_items: "{{manage_iq_tasks}}"
  53. register: osmiq_perm_task
  54. failed_when: "'already exists' not in osmiq_perm_task.stderr and osmiq_perm_task.rc != 0"
  55. changed_when: osmiq_perm_task.rc == 0
  56. # AUDIT:changed_when_note: Checking the return code is insufficient
  57. # here. We really need to compare the current role/user permissions
  58. # with their expected state. I think we may have a module for this?
  59. - name: Configure 3_2 role/user permissions
  60. command: >
  61. {{ openshift.common.client_binary }} adm {{item}}
  62. --config={{manage_iq_tmp_conf}}
  63. with_items: "{{manage_iq_openshift_3_2_tasks}}"
  64. register: osmiq_perm_3_2_task
  65. failed_when: osmiq_perm_3_2_task.rc != 0
  66. changed_when: osmiq_perm_3_2_task.rc == 0
  67. when: openshift.common.version_gte_3_2_or_1_2 | bool
  68. - name: Clean temporary configuration file
  69. file: path={{manage_iq_tmp_conf}} state=absent