123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357 |
- ---
- # TODO: add ability to configure certificates given either a local file to
- # point to or certificate contents, set in default cert locations.
- # Authentication Variable Validation
- # TODO: validate the different identity provider kinds as well
- - fail:
- msg: >
- Invalid OAuth grant method: {{ openshift_master_oauth_grant_method }}
- when: openshift_master_oauth_grant_method is defined and openshift_master_oauth_grant_method not in openshift_master_valid_grant_methods
- # HA Variable Validation
- - fail:
- msg: "openshift_master_cluster_method must be set to either 'native' or 'pacemaker' for multi-master installations"
- when: openshift_master_ha | bool and ((openshift_master_cluster_method is not defined) or (openshift_master_cluster_method is defined and openshift_master_cluster_method not in ["native", "pacemaker"]))
- - fail:
- msg: "'native' high availability is not supported for the requested OpenShift version"
- when: openshift_master_ha | bool and openshift_master_cluster_method == "native" and not openshift.common.version_gte_3_1_or_1_1 | bool
- - fail:
- msg: "openshift_master_cluster_password must be set for multi-master installations"
- when: openshift_master_ha | bool and openshift_master_cluster_method == "pacemaker" and (openshift_master_cluster_password is not defined or not openshift_master_cluster_password)
- - fail:
- msg: "Pacemaker based HA is not supported at this time when used with containerized installs"
- when: openshift_master_ha | bool and openshift_master_cluster_method == "pacemaker" and openshift.common.is_containerized | bool
- - name: Open up firewall ports
- include: firewall.yml
- static: yes
- - name: Install Master package
- package:
- name: "{{ openshift.common.service_type }}-master{{ openshift_pkg_version | default('') | oo_image_tag_to_rpm_version(include_dash=True) }}"
- state: present
- when: not openshift.common.is_containerized | bool
- - name: Create openshift.common.data_dir
- file:
- path: "{{ openshift.common.data_dir }}"
- state: directory
- mode: 0755
- owner: root
- group: root
- when: openshift.common.is_containerized | bool
- - name: Reload systemd units
- command: systemctl daemon-reload
- when: openshift.common.is_containerized | bool and install_result | changed
- - name: Re-gather package dependent master facts
- openshift_facts:
- - name: Create config parent directory if it does not exist
- file:
- path: "{{ openshift_master_config_dir }}"
- state: directory
- - name: Create the policy file if it does not already exist
- command: >
- {{ openshift.common.client_binary }} adm create-bootstrap-policy-file
- --filename={{ openshift_master_policy }}
- args:
- creates: "{{ openshift_master_policy }}"
- notify:
- - restart master
- - restart master api
- - restart master controllers
- - name: Create the scheduler config
- copy:
- content: "{{ scheduler_config | to_nice_json }}"
- dest: "{{ openshift_master_scheduler_conf }}"
- backup: true
- notify:
- - restart master
- - restart master api
- - restart master controllers
- - name: Install httpd-tools if needed
- package: name=httpd-tools state=present
- when: (item.kind == 'HTPasswdPasswordIdentityProvider') and
- not openshift.common.is_atomic | bool
- with_items: "{{ openshift.master.identity_providers }}"
- - name: Ensure htpasswd directory exists
- file:
- path: "{{ item.filename | dirname }}"
- state: directory
- when: item.kind == 'HTPasswdPasswordIdentityProvider'
- with_items: "{{ openshift.master.identity_providers }}"
- - name: Create the htpasswd file if needed
- template:
- dest: "{{ item.filename }}"
- src: htpasswd.j2
- backup: yes
- when: item.kind == 'HTPasswdPasswordIdentityProvider' and openshift.master.manage_htpasswd | bool
- with_items: "{{ openshift.master.identity_providers }}"
- - name: Ensure htpasswd file exists
- copy:
- dest: "{{ item.filename }}"
- force: no
- content: ""
- mode: 0600
- when: item.kind == 'HTPasswdPasswordIdentityProvider'
- with_items: "{{ openshift.master.identity_providers }}"
- - name: Create the ldap ca file if needed
- copy:
- dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('ldap_ca.crt') }}"
- content: "{{ openshift.master.ldap_ca }}"
- mode: 0600
- backup: yes
- when: openshift.master.ldap_ca is defined and item.kind == 'LDAPPasswordIdentityProvider'
- with_items: "{{ openshift.master.identity_providers }}"
- - name: Create the openid ca file if needed
- copy:
- dest: "{{ item.ca if 'ca' in item and '/' in item.ca else openshift_master_config_dir ~ '/' ~ item.ca | default('openid_ca.crt') }}"
- content: "{{ openshift.master.openid_ca }}"
- mode: 0600
- backup: yes
- when: openshift.master.openid_ca is defined and item.kind == 'OpenIDIdentityProvider' and item.ca | default('') != ''
- with_items: "{{ openshift.master.identity_providers }}"
- - name: Create the request header ca file if needed
- copy:
- dest: "{{ item.clientCA if 'clientCA' in item and '/' in item.clientCA else openshift_master_config_dir ~ '/' ~ item.clientCA | default('request_header_ca.crt') }}"
- content: "{{ openshift.master.request_header_ca }}"
- mode: 0600
- backup: yes
- when: openshift.master.request_header_ca is defined and item.kind == 'RequestHeaderIdentityProvider' and item.clientCA | default('') != ''
- with_items: "{{ openshift.master.identity_providers }}"
- # This is an ugly hack to verify settings are in a file without modifying them with lineinfile.
- # The template file will stomp any other settings made.
- - block:
- - name: check whether our docker-registry setting exists in the env file
- command: "awk '/^OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000/' /etc/sysconfig/{{ openshift.common.service_type }}-master"
- failed_when: false
- changed_when: false
- register: already_set
- - set_fact:
- openshift_push_via_dns: "{{ (openshift_use_dnsmasq | default(true) and openshift.common.version_gte_3_6) or (already_set.stdout is defined and already_set.stdout | match('OPENSHIFT_DEFAULT_REGISTRY=docker-registry.default.svc:5000')) }}"
- - name: Set fact of all etcd host IPs
- openshift_facts:
- role: common
- local_facts:
- no_proxy_etcd_host_ips: "{{ openshift_no_proxy_etcd_host_ips }}"
- - name: Install the systemd units
- include: systemd_units.yml
- - name: Install Master system container
- include: system_container.yml
- when: openshift.common.is_containerized | bool and openshift.common.is_master_system_container | bool
- - name: Create session secrets file
- template:
- dest: "{{ openshift.master.session_secrets_file }}"
- src: sessionSecretsFile.yaml.v1.j2
- owner: root
- group: root
- mode: 0600
- when: openshift.master.session_auth_secrets is defined and openshift.master.session_encryption_secrets is defined
- notify:
- - restart master
- - restart master api
- - set_fact:
- translated_identity_providers: "{{ openshift.master.identity_providers | translate_idps('v1', openshift.common.version, openshift.common.deployment_type) }}"
- # TODO: add the validate parameter when there is a validation command to run
- - name: Create master config
- template:
- dest: "{{ openshift_master_config_file }}"
- src: master.yaml.v1.j2
- backup: true
- owner: root
- group: root
- mode: 0600
- notify:
- - restart master
- - restart master api
- - restart master controllers
- - include: set_loopback_context.yml
- when: openshift.common.version_gte_3_2_or_1_2
- # TODO: Master startup can fail when ec2 transparently reallocates the block
- # storage, causing etcd writes to temporarily fail. Retry failures blindly just
- # once to allow time for this transient condition to to resolve and for systemd
- # to restart the master (which will eventually succeed).
- #
- # https://github.com/coreos/etcd/issues/3864
- # https://github.com/openshift/origin/issues/6065
- # https://github.com/openshift/origin/issues/6447
- - name: Start and enable master
- systemd:
- daemon_reload: yes
- name: "{{ openshift.common.service_type }}-master"
- enabled: yes
- state: started
- when: not openshift_master_ha | bool
- register: start_result
- until: not start_result | failed
- retries: 1
- delay: 60
- notify: Verify API Server
- - name: Dump logs from master service if it failed
- command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master
- when: start_result | failed
- - name: Stop and disable non-HA master when running HA
- systemd:
- name: "{{ openshift.common.service_type }}-master"
- enabled: no
- state: stopped
- when: openshift_master_ha | bool
- register: task_result
- failed_when: task_result|failed and 'could not' not in task_result.msg|lower
- - set_fact:
- master_service_status_changed: "{{ start_result | changed }}"
- when: not openshift_master_ha | bool
- - name: Mask master service
- systemd:
- name: "{{ openshift.common.service_type }}-master"
- masked: yes
- when: >
- openshift_master_ha | bool and
- openshift.master.cluster_method == 'native' and
- not openshift.common.is_containerized | bool
- - name: Start and enable master api on first master
- systemd:
- name: "{{ openshift.common.service_type }}-master-api"
- enabled: yes
- state: started
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
- register: start_result
- until: not start_result | failed
- retries: 1
- delay: 60
- - name: Dump logs from master-api if it failed
- command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-api
- when: start_result | failed
- - set_fact:
- master_api_service_status_changed: "{{ start_result | changed }}"
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
- - pause:
- seconds: 15
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
- - name: Start and enable master api all masters
- systemd:
- name: "{{ openshift.common.service_type }}-master-api"
- enabled: yes
- state: started
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
- register: start_result
- until: not start_result | failed
- retries: 1
- delay: 60
- - name: Dump logs from master-api if it failed
- command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-api
- when: start_result | failed
- - set_fact:
- master_api_service_status_changed: "{{ start_result | changed }}"
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
- # A separate wait is required here for native HA since notifies will
- # be resolved after all tasks in the role.
- - name: Wait for API to become available
- # Using curl here since the uri module requires python-httplib2 and
- # wait_for port doesn't provide health information.
- command: >
- curl --silent --tlsv1.2
- {% if openshift.common.version_gte_3_2_or_1_2 | bool %}
- --cacert {{ openshift.common.config_base }}/master/ca-bundle.crt
- {% else %}
- --cacert {{ openshift.common.config_base }}/master/ca.crt
- {% endif %}
- {{ openshift.master.api_url }}/healthz/ready
- register: api_available_output
- until: api_available_output.stdout == 'ok'
- retries: 120
- delay: 1
- run_once: true
- changed_when: false
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and master_api_service_status_changed | bool
- - name: Start and enable master controller on first master
- systemd:
- name: "{{ openshift.common.service_type }}-master-controllers"
- enabled: yes
- state: started
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname == openshift_master_hosts[0]
- register: start_result
- until: not start_result | failed
- retries: 1
- delay: 60
- - name: Dump logs from master-controllers if it failed
- command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-controllers
- when: start_result | failed
- - name: Wait for master controller service to start on first master
- pause:
- seconds: 15
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
- - name: Start and enable master controller on all masters
- systemd:
- name: "{{ openshift.common.service_type }}-master-controllers"
- enabled: yes
- state: started
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native' and inventory_hostname != openshift_master_hosts[0]
- register: start_result
- until: not start_result | failed
- retries: 1
- delay: 60
- - name: Dump logs from master-controllers if it failed
- command: journalctl --no-pager -n 100 -u {{ openshift.common.service_type }}-master-controllers
- when: start_result | failed
- - set_fact:
- master_controllers_service_status_changed: "{{ start_result | changed }}"
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'native'
- - name: Install cluster packages
- package: name=pcs state=present
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
- and not openshift.common.is_containerized | bool
- register: install_result
- - name: Start and enable cluster service
- systemd:
- name: pcsd
- enabled: yes
- state: started
- when: openshift_master_ha | bool and openshift.master.cluster_method == 'pacemaker'
- and not openshift.common.is_containerized | bool
- - name: Set the cluster user password
- shell: echo {{ openshift_master_cluster_password | quote }} | passwd --stdin hacluster
- when: install_result | changed
|