main.yml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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_path: "{{ openshift_master_console_path | default(None) }}"
  14. console_port: "{{ openshift_master_console_port | default(None) }}"
  15. console_url: "{{ openshift_master_console_url | default(None) }}"
  16. console_use_ssl: "{{ openshift_master_console_use_ssl | default(None) }}"
  17. public_console_url: "{{ openshift_master_public_console_url | default(None) }}"
  18. etcd_port: "{{ openshift_master_etcd_port | default(None) }}"
  19. etcd_use_ssl: "{{ openshift_master_etcd_use_ssl | default(None) }}"
  20. portal_net: "{{ openshift_master_portal_net | default(None) }}"
  21. # TODO: These values need to be configurable
  22. - name: Set dns OpenShift facts
  23. openshift_facts:
  24. role: 'dns'
  25. local_facts:
  26. ip: "{{ openshift.common.ip }}"
  27. domain: local
  28. - name: Install OpenShift Master package
  29. yum: pkg=openshift-master state=installed
  30. register: install_result
  31. - name: Reload systemd units
  32. command: systemctl daemon-reload
  33. when: install_result | changed
  34. - name: Create certificate parent directory if it doesn't exist
  35. file:
  36. path: "{{ openshift_cert_parent_dir }}"
  37. state: directory
  38. - name: Create config parent directory if it doesn't exist
  39. file:
  40. path: "{{ openshift_master_config | dirname }}"
  41. state: directory
  42. # TODO: should probably use a template lookup for this
  43. # TODO: should allow for setting --etcd, --kubernetes options
  44. # TODO: recreate config if values change
  45. - name: Use enterprise default for openshift_registry_url if not set
  46. set_fact:
  47. openshift_registry_url: "openshift3_beta/ose-${component}:${version}"
  48. when: openshift.common.deployment_type == 'enterprise' and openshift_registry_url is not defined
  49. - name: Create master config
  50. command: >
  51. /usr/bin/openshift start master --write-config
  52. --config={{ openshift_master_config }}
  53. --portal-net={{ openshift.master.portal_net }}
  54. --master={{ openshift.master.api_url }}
  55. --public-master={{ openshift.master.public_api_url }}
  56. --listen={{ 'https' if openshift.master.api_use_ssl else 'http' }}://0.0.0.0:{{ openshift.master.api_port }}
  57. {{ ('--images=' ~ openshift_registry_url) if openshift_registry_url is defined else '' }}
  58. {{ ('--nodes=' ~ openshift_node_ips | join(',')) if openshift_node_ips is defined else '' }}
  59. args:
  60. chdir: "{{ openshift_cert_parent_dir }}"
  61. creates: "{{ openshift_master_config }}"
  62. - name: Configure OpenShift settings
  63. lineinfile:
  64. dest: /etc/sysconfig/openshift-master
  65. regexp: '^OPTIONS='
  66. line: "OPTIONS=\"--config={{ openshift_master_config }} --loglevel={{ openshift.master.debug_level }}\""
  67. notify:
  68. - restart openshift-master
  69. - name: Start and enable openshift-master
  70. service: name=openshift-master enabled=yes state=started
  71. - name: Create .kube directory
  72. file:
  73. path: /root/.kube
  74. state: directory
  75. mode: 0700
  76. # TODO: Update this file if the contents of the source file are not present in
  77. # the dest file, will need to make sure to ignore things that could be added
  78. - name: Configure root user kubeconfig
  79. command: cp {{ openshift_cert_dir }}/openshift-client/.kubeconfig /root/.kube/.kubeconfig
  80. args:
  81. creates: /root/.kube/.kubeconfig