heat_template_version: queens description: External tasks definition for OpenShift parameters: RoleNetIpMap: default: {} type: json ServiceData: default: {} description: Dictionary packing service data type: json ServiceNetMap: default: {} description: Mapping of service_name -> network name. Typically set via parameter_defaults in the resource registry. This mapping overrides those in ServiceNetMapDefaults. type: json DefaultPasswords: default: {} type: json RoleName: default: '' description: Role name on which the service is applied type: string RoleParameters: default: {} description: Parameters specific to the role type: json EndpointMap: default: {} description: Mapping of service endpoint -> protocol. Typically set via parameter_defaults in the resource registry. type: json OpenShiftGlobalVariables: default: {} description: Global Ansible variables for OpenShift-Ansible installer. type: json OpenShiftAnsiblePlaybook: default: '/usr/share/ansible/openshift-ansible/playbooks/byo/config.yml' description: Path to OpenShift-Ansible playbook. type: string OpenShiftMasterNodeVars: default: {} description: OpenShift node vars specific for the master nodes type: json OpenShiftWorkerNodeVars: default: {} description: OpenShift node vars specific for the worker nodes type: json outputs: role_data: description: Role data for the Openshift Service value: service_name: openshift_master config_settings: tripleo.openshift_master.firewall_rules: '200 openshift-master api': dport: 6443 proto: tcp '200 openshift-master etcd': dport: - 2379 - 2380 proto: tcp upgrade_tasks: [] step_config: '' external_deploy_tasks: - name: openshift_master step 2 when: step == '2' block: - name: create openshift temp dirs file: path: "{{item}}" state: directory with_items: - "{{playbook_dir}}/openshift" - name: set openshift global vars fact set_fact: openshift_global_vars: {get_param: OpenShiftGlobalVariables} openshift_master_node_vars: {get_param: OpenShiftMasterNodeVars} openshift_worker_node_vars: {get_param: OpenShiftWorkerNodeVars} - name: generate openshift inventory copy: dest: "{{playbook_dir}}/openshift/inventory.yml" content: | masters: hosts: {% for host in groups['openshift_master'] -%} {{ hostvars.raw_get(host)['ansible_hostname'] }}: ansible_user: {{ hostvars.raw_get(host)['ansible_user'] | default(hostvars.raw_get(host)['ansible_ssh_user']) | default('root') }} ansible_host: {{ hostvars.raw_get(host)['ansible_host'] | default(host) }} ansible_become: true etcd_ip: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_ip: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_public_ip: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_hostname: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_public_hostname: {{hostvars.raw_get(host)['ctlplane_ip']}} {% if openshift_master_node_vars -%} {{openshift_master_node_vars | to_nice_yaml() | indent(6)}} {%- endif %} {% endfor %} nodes: hosts: {% for host in groups['openshift_worker'] -%} {{ hostvars.raw_get(host)['ansible_hostname'] }}: ansible_user: {{ hostvars.raw_get(host)['ansible_user'] | default(hostvars.raw_get(host)['ansible_ssh_user']) | default('root') }} ansible_host: {{ hostvars.raw_get(host)['ansible_host'] | default(host) }} ansible_become: true etcd_ip: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_ip: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_public_ip: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_hostname: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_public_hostname: {{hostvars.raw_get(host)['ctlplane_ip']}} openshift_schedulable: true openshift_node_labels: region: 'infra' zone: 'default' {% if openshift_worker_node_vars -%} {{openshift_worker_node_vars | to_nice_yaml() | indent(6)}} {%- endif %} {% endfor %} etcd: children: masters: {} OSEv3: children: masters: {} nodes: {} - name: generate openshift global defaults copy: dest: "{{playbook_dir}}/openshift/global_defaults.yml" content: | containerized: true openshift_master_cluster_method: native openshift_use_dnsmasq: true openshift_use_external_openvswitch: true - name: generate openshift global vars copy: dest: "{{playbook_dir}}/openshift/global_vars.yml" content: "{{openshift_global_vars|to_nice_yaml}}" - name: set openshift ansible playbook path set_fact: openshift_ansible_playbook_path: {get_param: OpenShiftAnsiblePlaybook} - name: generate openshift playbook copy: dest: "{{playbook_dir}}/openshift/playbook.yml" content: | # NOTE(flaper87): The NetworkManager setup has been moved # into openshift-ansible but it's not been released yet. # This code will go away as soon as an rpm with the required # roles hits the repo. - name: OpenShift networking preparation hosts: all tasks: - name: install NetworkManager package: name: NetworkManager state: present - name: generate nm dispatcher script copy: dest: "/etc/NetworkManager/dispatcher.d/99-os-net-config-origin-dns.sh" owner: root mode: 0755 content: >- #!/bin/bash -x for dev in $(jq '.network_config[] | {name}.name' /etc/os-net-config/config.json); do temp="${dev%\"}" temp="${temp#\"}" export DEVICE_IFACE=$temp /etc/NetworkManager/dispatcher.d/99-origin-dns.sh $DEVICE_IFACE up done - name: Enable NetworkManager service: name: NetworkManager state: restarted enabled: yes - include: "{{openshift_ansible_playbook_path}}" - name: set openshift command set_fact: openshift_command: >- {%- if openshift_command is defined -%} {{openshift_command}} {%- else -%} ANSIBLE_HOST_KEY_CHECKING=False ansible-playbook -i '{{playbook_dir}}/openshift/inventory.yml' --extra-vars '@{{playbook_dir}}/openshift/global_defaults.yml' --extra-vars '@{{playbook_dir}}/openshift/global_vars.yml' '{{playbook_dir}}/openshift/playbook.yml' {%- endif -%} - name: print openshift command debug: var: openshift_command - name: run openshift (immediate log at {{playbook_dir}}/openshift/playbook.log) shell: | {{openshift_command}} 2>&1 | tee {{playbook_dir}}/openshift/playbook.log exit ${PIPESTATUS[0]}