main.yml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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 config parent directory if it doesn't exist
  35. file:
  36. path: "{{ openshift_master_config_dir }}"
  37. state: directory
  38. # TODO: should probably use a template lookup for this
  39. # TODO: should allow for setting --etcd, --kubernetes options
  40. # TODO: recreate config if values change
  41. - name: Use enterprise default for oreg_url if not set
  42. set_fact:
  43. oreg_url: "openshift3_beta/ose-${component}:${version}"
  44. when: openshift.common.deployment_type == 'enterprise' and oreg_url is not defined
  45. - name: Use online default for oreg_url if not set
  46. set_fact:
  47. oreg_url: "docker-registry.ops.rhcloud.com/openshift3_beta/ose-${component}:${version}"
  48. when: openshift.common.deployment_type == 'online' and oreg_url is not defined
  49. # TODO: Need to get a flag added for volumes path, i think it'll get put in
  50. - name: Create master config
  51. command: >
  52. /usr/bin/openshift start master
  53. --write-config={{ openshift_master_config_dir }}
  54. --portal-net={{ openshift.master.portal_net }}
  55. --etcd-dir={{ openshift_data_dir }}/openshift.local.etcd
  56. --master={{ openshift.master.api_url }}
  57. --public-master={{ openshift.master.public_api_url }}
  58. --listen={{ 'https' if openshift.master.api_use_ssl else 'http' }}://0.0.0.0:{{ openshift.master.api_port }}
  59. {{ ('--images=' ~ oreg_url) if (oreg_url | default('', true) != '') else '' }}
  60. {{ ('--nodes=' ~ openshift_node_ips | join(',')) if (openshift_node_ips | default('', true) != '') else '' }}
  61. args:
  62. chdir: "{{ openshift_master_config_dir }}"
  63. creates: "{{ openshift_master_config_file }}"
  64. - name: Configure OpenShift settings
  65. lineinfile:
  66. dest: /etc/sysconfig/openshift-master
  67. regexp: "{{ item.regex }}"
  68. line: "{{ item.line }}"
  69. with_items:
  70. - regex: '^OPTIONS='
  71. line: "OPTIONS=--loglevel={{ openshift.master.debug_level }}"
  72. - regex: '^CONFIG_FILE='
  73. line: "CONFIG_FILE={{ openshift_master_config_file}}"
  74. notify:
  75. - restart openshift-master
  76. - name: Start and enable openshift-master
  77. service: name=openshift-master enabled=yes state=started
  78. - name: Create the OpenShift client config dir(s)
  79. file:
  80. path: "~{{ item }}/.config/openshift"
  81. state: directory
  82. mode: 0700
  83. owner: "{{ item }}"
  84. group: "{{ item }}"
  85. with_items:
  86. - root
  87. - "{{ ansible_ssh_user }}"
  88. # TODO: Update this file if the contents of the source file are not present in
  89. # the dest file, will need to make sure to ignore things that could be added
  90. - name: Create the OpenShift client config(s)
  91. command: cp {{ openshift_master_config_dir }}/openshift-client.kubeconfig ~{{ item }}/.config/openshift/.config
  92. args:
  93. creates: ~{{ item }}/.config/openshift/.config
  94. with_items:
  95. - root
  96. - "{{ ansible_ssh_user }}"
  97. - name: Update the permissions on the OpenShift client config(s)
  98. file:
  99. path: "~{{ item }}/.config/openshift/.config"
  100. state: file
  101. mode: 0700
  102. owner: "{{ item }}"
  103. group: "{{ item }}"
  104. with_items:
  105. - root
  106. - "{{ ansible_ssh_user }}"