main.yml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. ---
  2. # TODO: actually have api_port, api_use_ssl, console_port, console_use_ssl,
  3. # etcd_use_ssl actually change the master config.
  4. - name: Set master OpenShift facts
  5. openshift_facts:
  6. role: 'master'
  7. local_facts:
  8. debug_level: "{{ openshift_master_debug_level | default(openshift.common.debug_level) }}"
  9. api_port: "{{ openshift_master_api_port | default(None) }}"
  10. api_url: "{{ openshift_master_api_url | default(None) }}"
  11. api_use_ssl: "{{ openshift_master_api_use_ssl | default(None) }}"
  12. public_api_url: "{{ openshift_master_public_api_url | default(None) }}"
  13. console_port: "{{ openshift_master_console_port | default(None) }}"
  14. console_url: "{{ openshift_master_console_url | default(None) }}"
  15. console_use_ssl: "{{ openshift_master_console_use_ssl | default(None) }}"
  16. public_console_url: "{{ openshift_master_public_console_url | default(None) }}"
  17. etcd_use_ssl: "{{ openshift_master_etcd_use_ssl | default(None) }}"
  18. - name: Install OpenShift Master package
  19. yum: pkg=openshift-master state=installed
  20. # TODO: We should pre-generate the master config and point to the generated
  21. # config rather than setting command line flags here
  22. - name: Configure OpenShift settings
  23. lineinfile:
  24. dest: /etc/sysconfig/openshift-master
  25. regexp: '^OPTIONS='
  26. line: "OPTIONS=\"--master={{ openshift.common.hostname }} --public-master={{ openshift.common.public_hostname }} {% if openshift_node_ips %} --nodes={{ openshift_node_ips | join(',') }} {% endif %} --loglevel={{ openshift.master.debug_level }}\""
  27. notify:
  28. - restart openshift-master
  29. # TODO: should this be populated by a fact based on the deployment type
  30. # (origin, online, enterprise)?
  31. - name: Set default registry url
  32. lineinfile:
  33. dest: /etc/sysconfig/openshift-master
  34. regexp: '^IMAGES='
  35. line: "IMAGES={{ openshift_registry_url }}"
  36. when: openshift_registry_url is defined
  37. notify:
  38. - restart openshift-master
  39. - name: Start and enable openshift-master
  40. service: name=openshift-master enabled=yes state=started
  41. - name: Create .kube directory
  42. file:
  43. path: /root/.kube
  44. state: directory
  45. mode: 0700
  46. # TODO: Update this file if the contents of the source file are not present in
  47. # the dest file, will need to make sure to ignore things that could be added
  48. - name: Configure root user kubeconfig
  49. command: cp /var/lib/openshift/openshift.local.certificates/openshift-client/.kubeconfig /root/.kube/.kubeconfig
  50. args:
  51. creates: /root/.kube/.kubeconfig