main.yml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. ---
  2. # TODO: add validation for openshift_master_identity_providers
  3. # TODO: add ability to configure certificates given either a local file to
  4. # point to or certificate contents, set in default cert locations.
  5. - assert:
  6. that:
  7. - openshift_master_oauth_grant_method in openshift_master_valid_grant_methods
  8. when: openshift_master_oauth_grant_method is defined
  9. - name: Set master OpenShift facts
  10. openshift_facts:
  11. role: master
  12. local_facts:
  13. debug_level: "{{ openshift_master_debug_level | default(openshift.common.debug_level) }}"
  14. api_port: "{{ openshift_master_api_port | default(None) }}"
  15. api_url: "{{ openshift_master_api_url | default(None) }}"
  16. api_use_ssl: "{{ openshift_master_api_use_ssl | default(None) }}"
  17. public_api_url: "{{ openshift_master_public_api_url | default(None) }}"
  18. console_path: "{{ openshift_master_console_path | default(None) }}"
  19. console_port: "{{ openshift_master_console_port | default(None) }}"
  20. console_url: "{{ openshift_master_console_url | default(None) }}"
  21. console_use_ssl: "{{ openshift_master_console_use_ssl | default(None) }}"
  22. public_console_url: "{{ openshift_master_public_console_url | default(None) }}"
  23. etcd_port: "{{ openshift_master_etcd_port | default(None) }}"
  24. etcd_use_ssl: "{{ openshift_master_etcd_use_ssl | default(None) }}"
  25. etcd_urls: "{{ openshift_master_etcd_urls | default(None) }}"
  26. embedded_etcd: "{{ openshift_master_embedded_etcd | default(None) }}"
  27. embedded_kube: "{{ openshift_master_embedded_kube | default(None) }}"
  28. embedded_dns: "{{ openshift_master_embedded_dns | default(None) }}"
  29. dns_port: "{{ openshift_master_dns_port | default(None) }}"
  30. bind_addr: "{{ openshift_master_bind_addr | default(None) }}"
  31. portal_net: "{{ openshift_master_portal_net | default(None) }}"
  32. session_max_seconds: "{{ openshift_master_session_max_seconds | default(None) }}"
  33. session_name: "{{ openshift_master_session_name | default(None) }}"
  34. session_secrets_file: "{{ openshift_master_session_secrets_file | default(None) }}"
  35. access_token_max_seconds: "{{ openshift_master_access_token_max_seconds | default(None) }}"
  36. auth_token_max_seconds: "{{ openshift_master_auth_token_max_seconds | default(None) }}"
  37. identity_providers: "{{ openshift_master_identity_providers | default(None) }}"
  38. registry_url: "{{ oreg_url | default(None) }}"
  39. oauth_grant_method: "{{ openshift_master_oauth_grant_method | default(None) }}"
  40. sdn_cluster_network_cidr: "{{ osm_cluster_network_cidr | default(None) }}"
  41. sdn_host_subnet_length: "{{ osm_host_subnet_length | default(None) }}"
  42. # TODO: These values need to be configurable
  43. - name: Set dns OpenShift facts
  44. openshift_facts:
  45. role: dns
  46. local_facts:
  47. ip: "{{ openshift.common.ip }}"
  48. domain: cluster.local
  49. when: openshift.master.embedded_dns
  50. - name: Install OpenShift Master package
  51. yum: pkg=openshift-master state=installed
  52. register: install_result
  53. - name: Reload systemd units
  54. command: systemctl daemon-reload
  55. when: install_result | changed
  56. - name: Create config parent directory if it doesn't exist
  57. file:
  58. path: "{{ openshift_master_config_dir }}"
  59. state: directory
  60. - name: Create the master certificates if they do not already exist
  61. command: >
  62. {{ openshift.common.admin_binary }} create-master-certs
  63. --hostnames={{ openshift.common.hostname }},{{ openshift.common.public_hostname }}
  64. --master={{ openshift.master.api_url }}
  65. --public-master={{ openshift.master.public_api_url }}
  66. --cert-dir={{ openshift_master_config_dir }} --overwrite=false
  67. args:
  68. creates: "{{ openshift_master_config_dir }}/master.server.key"
  69. - name: Create the policy file if it does not already exist
  70. command: >
  71. {{ openshift.common.admin_binary }} create-bootstrap-policy-file
  72. --filename={{ openshift_master_policy }}
  73. args:
  74. creates: "{{ openshift_master_policy }}"
  75. notify:
  76. - restart openshift-master
  77. - name: Create the scheduler config
  78. template:
  79. dest: "{{ openshift_master_scheduler_conf }}"
  80. src: scheduler.json.j2
  81. notify:
  82. - restart openshift-master
  83. - name: Install httpd-tools if needed
  84. yum: pkg=httpd-tools state=installed
  85. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  86. with_items: openshift.master.identity_providers
  87. - name: Create the htpasswd file if needed
  88. copy:
  89. dest: "{{ item.filename }}"
  90. content: ""
  91. mode: 0600
  92. force: no
  93. when: item.kind == 'HTPasswdPasswordIdentityProvider'
  94. with_items: openshift.master.identity_providers
  95. # TODO: add the validate parameter when there is a validation command to run
  96. - name: Create master config
  97. template:
  98. dest: "{{ openshift_master_config_file }}"
  99. src: master.yaml.v1.j2
  100. notify:
  101. - restart openshift-master
  102. - name: Configure OpenShift settings
  103. lineinfile:
  104. dest: /etc/sysconfig/openshift-master
  105. regexp: "{{ item.regex }}"
  106. line: "{{ item.line }}"
  107. with_items:
  108. - regex: '^OPTIONS='
  109. line: "OPTIONS=--loglevel={{ openshift.master.debug_level }}"
  110. - regex: '^CONFIG_FILE='
  111. line: "CONFIG_FILE={{ openshift_master_config_file }}"
  112. notify:
  113. - restart openshift-master
  114. - name: Start and enable openshift-master
  115. service: name=openshift-master enabled=yes state=started
  116. - name: Create the OpenShift client config dir(s)
  117. file:
  118. path: "~{{ item }}/.config/openshift"
  119. state: directory
  120. mode: 0700
  121. owner: "{{ item }}"
  122. group: "{{ item }}"
  123. with_items:
  124. - root
  125. - "{{ ansible_ssh_user }}"
  126. # TODO: Update this file if the contents of the source file are not present in
  127. # the dest file, will need to make sure to ignore things that could be added
  128. - name: Copy the OpenShift admin client config(s)
  129. command: cp {{ openshift_master_config_dir }}/admin.kubeconfig ~{{ item }}/.config/openshift/.config
  130. args:
  131. creates: ~{{ item }}/.config/openshift/.config
  132. with_items:
  133. - root
  134. - "{{ ansible_ssh_user }}"
  135. - name: Update the permissions on the OpenShift admin client config(s)
  136. file:
  137. path: "~{{ item }}/.config/openshift/.config"
  138. state: file
  139. mode: 0700
  140. owner: "{{ item }}"
  141. group: "{{ item }}"
  142. with_items:
  143. - root
  144. - "{{ ansible_ssh_user }}"