diff options
Diffstat (limited to 'playbooks')
48 files changed, 136 insertions, 94 deletions
| diff --git a/playbooks/adhoc/atomic_openshift_tutorial_reset.yml b/playbooks/adhoc/atomic_openshift_tutorial_reset.yml index c14d08e87..5a5a00ea4 100644 --- a/playbooks/adhoc/atomic_openshift_tutorial_reset.yml +++ b/playbooks/adhoc/atomic_openshift_tutorial_reset.yml @@ -8,7 +8,7 @@  - hosts:      - OSEv3:children -  sudo: yes +  become: yes    tasks:      - shell: docker ps -a -q | xargs docker stop diff --git a/playbooks/adhoc/setupnfs.yml b/playbooks/adhoc/setupnfs.yml index 5f3631fcf..fd489dc70 100644 --- a/playbooks/adhoc/setupnfs.yml +++ b/playbooks/adhoc/setupnfs.yml @@ -1,7 +1,7 @@  ---  ### This playbook is old and we are currently not using NFS.  - hosts: tag_Name_nfs-v3-stg -  sudo: no +  become: no    remote_user: root    gather_facts: no    roles: diff --git a/playbooks/adhoc/uninstall.yml b/playbooks/adhoc/uninstall.yml index 8fb515982..0755d8bc5 100644 --- a/playbooks/adhoc/uninstall.yml +++ b/playbooks/adhoc/uninstall.yml @@ -10,7 +10,7 @@  - hosts:      - OSEv3:children -  sudo: yes +  become: yes    tasks:      - name: Detecting Operating System @@ -232,6 +232,9 @@          - /usr/local/bin/oadm          - /usr/local/bin/oc          - /usr/local/bin/kubectl +        - /etc/NetworkManager/dispatcher.d/99-origin-dns.sh +        - /etc/dnsmasq.d/origin-dns.conf +        - /etc/dnsmasq.d/origin-upstream-dns.conf      # Since we are potentially removing the systemd unit files for separated      # master-api and master-controllers services, so we need to reload the @@ -240,7 +243,9 @@        command: systemctl daemon-reload  - hosts: nodes -  sudo: yes +  become: yes    tasks:      - name: restart docker        service: name=docker state=restarted +    - name: restart NetworkManager +      service: name=NetworkManager state=restarted diff --git a/playbooks/aws/openshift-cluster/config.yml b/playbooks/aws/openshift-cluster/config.yml index 9fba856a2..66ff3e5b8 100644 --- a/playbooks/aws/openshift-cluster/config.yml +++ b/playbooks/aws/openshift-cluster/config.yml @@ -11,7 +11,7 @@      openshift_deployment_type: "{{ deployment_type }}"      openshift_public_hostname: "{{ ec2_ip_address }}"      openshift_registry_selector: 'type=infra' -    openshift_router_selector: 'type=infra' +    openshift_hosted_router_selector: 'type=infra'      openshift_infra_nodes: "{{ g_infra_hosts }}"      openshift_node_labels: '{"region": "{{ ec2_region }}", "type": "{{ hostvars[inventory_hostname]["ec2_tag_sub-host-type"] if inventory_hostname in groups["tag_host-type_node"] else hostvars[inventory_hostname]["ec2_tag_host-type"] }}"}'      openshift_master_cluster_method: 'native' diff --git a/playbooks/aws/openshift-cluster/list.yml b/playbooks/aws/openshift-cluster/list.yml index 8b41a355e..d591c884d 100644 --- a/playbooks/aws/openshift-cluster/list.yml +++ b/playbooks/aws/openshift-cluster/list.yml @@ -15,7 +15,7 @@        name: "{{ item }}"        groups: oo_list_hosts        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: groups[scratch_group] | default([]) | difference(['localhost'])  - name: List Hosts diff --git a/playbooks/aws/openshift-cluster/scaleup.yml b/playbooks/aws/openshift-cluster/scaleup.yml index 7e3a47964..d91f2288e 100644 --- a/playbooks/aws/openshift-cluster/scaleup.yml +++ b/playbooks/aws/openshift-cluster/scaleup.yml @@ -12,7 +12,7 @@        name: "{{ item }}"        groups: oo_hosts_to_update        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ groups.nodes_to_add }}"  - include: ../../common/openshift-cluster/update_repos_and_packages.yml diff --git a/playbooks/aws/openshift-cluster/service.yml b/playbooks/aws/openshift-cluster/service.yml index d5f7d6b19..68c73109f 100644 --- a/playbooks/aws/openshift-cluster/service.yml +++ b/playbooks/aws/openshift-cluster/service.yml @@ -16,7 +16,7 @@        name: "{{ item }}"        groups: g_service_masters        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ master_hosts | default([]) }}"    - name: Evaluate g_service_nodes @@ -24,7 +24,7 @@        name: "{{ item }}"        groups: g_service_nodes        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ node_hosts | default([]) }}"  - include: ../../common/openshift-node/service.yml diff --git a/playbooks/aws/openshift-cluster/tasks/launch_instances.yml b/playbooks/aws/openshift-cluster/tasks/launch_instances.yml index 63be06ecf..cd2146884 100644 --- a/playbooks/aws/openshift-cluster/tasks/launch_instances.yml +++ b/playbooks/aws/openshift-cluster/tasks/launch_instances.yml @@ -173,7 +173,7 @@      hostname: "{{ item.0 }}"      ansible_ssh_host: "{{ item.1.dns_name }}"      ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -    ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +    ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      groups: "{{ instance_groups }}"      ec2_private_ip_address: "{{ item.1.private_ip }}"      ec2_ip_address: "{{ item.1.public_ip }}" @@ -188,7 +188,7 @@      hostname: "{{ item.0 }}"      ansible_ssh_host: "{{ item.1.dns_name }}"      ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -    ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +    ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      groups: nodes_to_add      ec2_private_ip_address: "{{ item.1.private_ip }}"      ec2_ip_address: "{{ item.1.public_ip }}" diff --git a/playbooks/aws/openshift-cluster/terminate.yml b/playbooks/aws/openshift-cluster/terminate.yml index 6dd5d8b62..5ef50ffb9 100644 --- a/playbooks/aws/openshift-cluster/terminate.yml +++ b/playbooks/aws/openshift-cluster/terminate.yml @@ -11,7 +11,7 @@        name: "{{ item }}"        groups: oo_hosts_to_terminate        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: (groups['tag_clusterid_' ~ cluster_id] | default([])) | difference(['localhost'])  - name: Unsubscribe VMs diff --git a/playbooks/aws/openshift-cluster/update.yml b/playbooks/aws/openshift-cluster/update.yml index 32bab76b5..b3998d4e0 100644 --- a/playbooks/aws/openshift-cluster/update.yml +++ b/playbooks/aws/openshift-cluster/update.yml @@ -13,7 +13,7 @@        name: "{{ item }}"        groups: oo_hosts_to_update        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ g_all_hosts | default([]) }}"  - include: ../../common/openshift-cluster/update_repos_and_packages.yml diff --git a/playbooks/aws/openshift-cluster/vars.yml b/playbooks/aws/openshift-cluster/vars.yml index ae12286bd..f9d539e16 100644 --- a/playbooks/aws/openshift-cluster/vars.yml +++ b/playbooks/aws/openshift-cluster/vars.yml @@ -7,7 +7,7 @@ deployment_rhel7_ent_base:    image_name:    region: us-east-1    ssh_user: ec2-user -  sudo: yes +  become: yes    keypair: libra    type: m4.large    security_groups: [ 'public' ] @@ -21,7 +21,7 @@ deployment_vars:      image_name:      region: us-east-1      ssh_user: centos -    sudo: yes +    become: yes      keypair: libra      type: m4.large      security_groups: [ 'public' ] @@ -33,7 +33,7 @@ deployment_vars:      image_name: openshift-rhel7_*      region: us-east-1      ssh_user: root -    sudo: no +    become: no      keypair: libra      type: m4.large      security_groups: [ 'public' ] diff --git a/playbooks/common/openshift-cluster/additional_config.yml b/playbooks/common/openshift-cluster/additional_config.yml index 44bf962c9..c5a0f123c 100644 --- a/playbooks/common/openshift-cluster/additional_config.yml +++ b/playbooks/common/openshift-cluster/additional_config.yml @@ -52,3 +52,5 @@    - role: openshift_registry      registry_volume_claim: "{{ openshift.hosted.registry.storage.volume.name }}-claim"      when: deploy_infra | bool and attach_registry_volume | bool +  - role: openshift_metrics +    when: openshift.hosted.metrics.deploy | bool diff --git a/playbooks/common/openshift-cluster/config.yml b/playbooks/common/openshift-cluster/config.yml index 6f908fa7f..99b36098a 100644 --- a/playbooks/common/openshift-cluster/config.yml +++ b/playbooks/common/openshift-cluster/config.yml @@ -4,7 +4,7 @@  - include: validate_hostnames.yml  - name: Set oo_options -  hosts: oo_hosts_to_config +  hosts: oo_all_hosts    tasks:    - set_fact:        openshift_docker_additional_registries: "{{ lookup('oo_option', 'docker_additional_registries') }}" diff --git a/playbooks/common/openshift-cluster/evaluate_groups.yml b/playbooks/common/openshift-cluster/evaluate_groups.yml index ce0134c44..3fb42a7fa 100644 --- a/playbooks/common/openshift-cluster/evaluate_groups.yml +++ b/playbooks/common/openshift-cluster/evaluate_groups.yml @@ -34,7 +34,7 @@        name: "{{ item }}"        groups: oo_all_hosts        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_all_hosts | default([]) }}"    - name: Evaluate oo_masters @@ -42,7 +42,7 @@        name: "{{ item }}"        groups: oo_masters        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_master_hosts | union(g_new_master_hosts) | default([]) }}"    - name: Evaluate oo_etcd_to_config @@ -50,7 +50,7 @@        name: "{{ item }}"        groups: oo_etcd_to_config        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_etcd_hosts | default([]) }}"    - name: Evaluate oo_masters_to_config @@ -58,7 +58,7 @@        name: "{{ item }}"        groups: oo_masters_to_config        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_new_master_hosts | default(g_master_hosts | default([], true), true) }}"    - name: Evaluate oo_nodes_to_config @@ -66,7 +66,7 @@        name: "{{ item }}"        groups: oo_nodes_to_config        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_new_node_hosts | default(g_node_hosts | default([], true), true) }}"    # Skip adding the master to oo_nodes_to_config when g_new_node_hosts is @@ -75,7 +75,7 @@        name: "{{ item }}"        groups: oo_nodes_to_config        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_master_hosts | default([]) }}"      when: g_nodeonmaster | default(false) == true and g_new_node_hosts is not defined @@ -91,7 +91,7 @@        name: "{{ g_master_hosts[0] }}"        groups: oo_first_master        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      when: g_master_hosts|length > 0    - name: Evaluate oo_lb_to_config @@ -99,7 +99,7 @@        name: "{{ item }}"        groups: oo_lb_to_config        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_lb_hosts | default([]) }}"    - name: Evaluate oo_nfs_to_config @@ -107,5 +107,5 @@        name: "{{ item }}"        groups: oo_nfs_to_config        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ g_nfs_hosts | default([]) }}" diff --git a/playbooks/common/openshift-cluster/upgrades/v3_0_minor/upgrade.yml b/playbooks/common/openshift-cluster/upgrades/v3_0_minor/upgrade.yml index 63c8ef756..51b108f6a 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_0_minor/upgrade.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_0_minor/upgrade.yml @@ -42,10 +42,10 @@  - name: Update cluster policy    hosts: oo_first_master    tasks: -    - name: oadm policy reconcile-cluster-roles --confirm +    - name: oadm policy reconcile-cluster-roles --additive-only=true --confirm        command: >          {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -        policy reconcile-cluster-roles --confirm +        policy reconcile-cluster-roles --additive-only=true --confirm  - name: Upgrade default router    hosts: oo_first_master diff --git a/playbooks/common/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml b/playbooks/common/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml index 31ba8c4a9..a72749a2b 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_0_to_v3_1/upgrade.yml @@ -490,7 +490,7 @@    - name: Reconcile Cluster Roles      command: >        {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -      policy reconcile-cluster-roles --confirm +      policy reconcile-cluster-roles --additive-only=true --confirm      run_once: true    - name: Reconcile Cluster Role Bindings diff --git a/playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml b/playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml index 54bb251f7..5e62b43a3 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml @@ -103,7 +103,7 @@    - name: Reconcile Cluster Roles      command: >        {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -      policy reconcile-cluster-roles --confirm +      policy reconcile-cluster-roles --additive-only=true --confirm      run_once: true    - name: Reconcile Cluster Role Bindings diff --git a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/containerized_upgrade.yml b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/containerized_upgrade.yml index 2bd625257..319758a06 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/containerized_upgrade.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/containerized_upgrade.yml @@ -1,7 +1,7 @@  - include_vars: ../../../../../roles/openshift_node/vars/main.yml  - name: Update systemd units -  include: ../../../../../roles/openshift_node/tasks/systemd_units.yml openshift_version=v{{ g_aos_versions.avail_version }} +  include: ../../../../../roles/openshift_node/tasks/systemd_units.yml openshift_version=v{{ g_new_version }}  - name: Verifying the correct version was configured    shell: grep {{ verify_upgrade_version }} {{ item }} diff --git a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/node_upgrade.yml b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/node_upgrade.yml new file mode 100644 index 000000000..a911f12be --- /dev/null +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/node_upgrade.yml @@ -0,0 +1,24 @@ +- name: Prepare for Node evacuation +  command: > +    {{ openshift.common.admin_binary }} manage-node {{ openshift.common.hostname | lower }} --schedulable=false +  delegate_to: "{{ groups.oo_first_master.0 }}" + +- name: Evacuate Node for Kubelet upgrade +  command: > +    {{ openshift.common.admin_binary }} manage-node {{ openshift.common.hostname | lower }} --evacuate --force +  delegate_to: "{{ groups.oo_first_master.0 }}" + +- include: rpm_upgrade.yml +  vars: +     component: "node" +     openshift_version: "{{ openshift_pkg_version | default('') }}" +  when: not openshift.common.is_containerized | bool + +- include: containerized_upgrade.yml +  when: openshift.common.is_containerized | bool + +- name: Set node schedulability +  command: > +    {{ openshift.common.admin_binary }} manage-node {{ openshift.common.hostname | lower }} --schedulable=true +  delegate_to: "{{ groups.oo_first_master.0 }}" +  when: openshift.node.schedulable | bool diff --git a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml index 21480ba55..db1d420ac 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/pre.yml @@ -161,14 +161,14 @@      when: inventory_hostname in groups.oo_masters_to_config    - name: Update systemd units -    include: ../../../../../roles/openshift_master/tasks/systemd_units.yml openshift_version=v{{ g_aos_versions.curr_version }} +    include: ../../../../../roles/openshift_master/tasks/systemd_units.yml openshift_version=v{{ g_new_version }}      when: inventory_hostname in groups.oo_masters_to_config    - include_vars: ../../../../../roles/openshift_node/vars/main.yml      when: inventory_hostname in groups.oo_nodes_to_config    - name: Update systemd units -    include: ../../../../../roles/openshift_node/tasks/systemd_units.yml openshift_version=v{{g_aos_versions.curr_version}} +    include: ../../../../../roles/openshift_node/tasks/systemd_units.yml openshift_version=v{{ g_new_version }}      when: inventory_hostname in groups.oo_nodes_to_config    # Note: the version number is hardcoded here in hopes of catching potential diff --git a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/rpm_upgrade.yml b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/rpm_upgrade.yml index 7a2718e1b..5c96ad094 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/rpm_upgrade.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/rpm_upgrade.yml @@ -4,3 +4,6 @@  - name: Ensure python-yaml present for config upgrade    action: "{{ ansible_pkg_mgr }} name=PyYAML state=present"    when: not openshift.common.is_atomic | bool + +- name: Restart node service +  service: name="{{ openshift.common.service_type }}-node" state=restarted diff --git a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/upgrade.yml b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/upgrade.yml index 8852bb8de..a28f7e9c1 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/upgrade.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/upgrade.yml @@ -50,7 +50,7 @@    - include_vars: ../../../../../roles/openshift_master/vars/main.yml    - name: Update systemd units -    include: ../../../../../roles/openshift_master/tasks/systemd_units.yml openshift_version=v{{ g_aos_versions.avail_version }} +    include: ../../../../../roles/openshift_master/tasks/systemd_units.yml openshift_version=v{{ g_new_version }}  #  - name: Upgrade master configuration  #    openshift_upgrade_config: @@ -88,23 +88,13 @@  ###############################################################################  - name: Upgrade nodes    hosts: oo_nodes_to_config +  serial: 1    roles:    - openshift_facts    handlers:    - include: ../../../../../roles/openshift_node/handlers/main.yml    tasks: -  - include: rpm_upgrade.yml -    vars: -       component: "node" -       openshift_version: "{{ openshift_pkg_version | default('') }}" -    when: not openshift.common.is_containerized | bool - -  - include: containerized_upgrade.yml -    when: openshift.common.is_containerized | bool - -  # This will restart the node -  - name: Restart openvswitch service -    service: name="{{ openshift.common.service_type }}-node" state=restarted +  - include: node_upgrade.yml    - set_fact:        node_update_complete: True @@ -130,6 +120,7 @@  ###############################################################################  # Reconcile Cluster Roles, Cluster Role Bindings and Security Context Constraints  ############################################################################### +  - name: Reconcile Cluster Roles and Cluster Role Bindings and Security Context Constraints    hosts: oo_masters_to_config    roles: @@ -147,7 +138,7 @@    - name: Reconcile Cluster Roles      command: >        {{ openshift.common.admin_binary}} --config={{ openshift.common.config_base }}/master/admin.kubeconfig -      policy reconcile-cluster-roles --confirm +      policy reconcile-cluster-roles --additive-only=true --confirm      run_once: true    - name: Reconcile Cluster Role Bindings @@ -164,7 +155,7 @@    - name: Reconcile Security Context Constraints      command: > -      {{ openshift.common.admin_binary}} policy reconcile-sccs --confirm +      {{ openshift.common.admin_binary}} policy reconcile-sccs --confirm --additive-only=true      run_once: true    - set_fact: diff --git a/playbooks/common/openshift-etcd/config.yml b/playbooks/common/openshift-etcd/config.yml index 2f07b2f51..01c092625 100644 --- a/playbooks/common/openshift-etcd/config.yml +++ b/playbooks/common/openshift-etcd/config.yml @@ -22,6 +22,8 @@        etcd_cert_subdir: etcd-{{ openshift.common.hostname }}        etcd_cert_config_dir: /etc/etcd        etcd_cert_prefix: +      etcd_hostname: "{{ openshift.common.hostname }}" +      etcd_ip: "{{ openshift.common.ip }}"  - name: Create temp directory for syncing certs    hosts: localhost @@ -43,7 +45,7 @@                                    | oo_filter_list(filter_attr='etcd_server_certs_missing') }}"      sync_tmpdir: "{{ hostvars.localhost.g_etcd_mktemp.stdout }}"    roles: -  - etcd_certificates +  - openshift_etcd_certificates    post_tasks:    - name: Create a tarball of the etcd certs      command: > @@ -69,7 +71,7 @@      sync_tmpdir: "{{ hostvars.localhost.g_etcd_mktemp.stdout }}"      etcd_url_scheme: https      etcd_peer_url_scheme: https -    etcd_peers_group: oo_etcd_to_config +    etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"    pre_tasks:    - name: Ensure certificate directory exists      file: @@ -91,7 +93,7 @@      sync_tmpdir: "{{ hostvars.localhost.g_etcd_mktemp.stdout }}"      etcd_url_scheme: https      etcd_peer_url_scheme: https -    etcd_peers_group: oo_etcd_to_config +    etcd_peers: "{{ groups.oo_etcd_to_config | default([], true) }}"    pre_tasks:    - name: Ensure certificate directory exists      file: diff --git a/playbooks/common/openshift-master/config.yml b/playbooks/common/openshift-master/config.yml index f1eaf8e16..060b5aa0d 100644 --- a/playbooks/common/openshift-master/config.yml +++ b/playbooks/common/openshift-master/config.yml @@ -35,6 +35,19 @@    - set_fact:        openshift_master_debug_level: "{{ t_oo_option_master_debug_level }}"      when: openshift_master_debug_level is not defined and t_oo_option_master_debug_level != "" + +  - set_fact: +      openshift_master_default_subdomain: "{{ lookup('oo_option', 'openshift_master_default_subdomain') | default(None, true) }}" +    when: openshift_master_default_subdomain is not defined +  - set_fact: +      openshift_hosted_metrics_deploy: "{{ lookup('oo_option', 'openshift_hosted_metrics_deploy') | default(false, true) }}" +    when: openshift_hosted_metrics_deploy is not defined +  - set_fact: +      openshift_hosted_metrics_duration: "{{ lookup('oo_option', 'openshift_hosted_metrics_duration') | default(7) }}" +    when: openshift_hosted_metrics_duration is not defined +  - set_fact: +      openshift_hosted_metrics_resolution: "{{ lookup('oo_option', 'openshift_hosted_metrics_resolution') | default(10) }}" +    when: openshift_hosted_metrics_resolution is not defined    roles:    - openshift_facts    post_tasks: @@ -53,7 +66,6 @@          console_url: "{{ openshift_master_console_url | default(None) }}"          console_use_ssl: "{{ openshift_master_console_use_ssl | default(None) }}"          public_console_url: "{{ openshift_master_public_console_url | default(None) }}" -        portal_net: "{{ openshift_master_portal_net | default(None) }}"          ha: "{{ openshift_master_ha | default(groups.oo_masters | length > 1) }}"          master_count: "{{ openshift_master_count | default(groups.oo_masters | length) }}"    - openshift_facts: @@ -75,6 +87,8 @@        etcd_cert_subdir: openshift-master-{{ openshift.common.hostname }}        etcd_cert_config_dir: "{{ openshift.common.config_base }}/master"        etcd_cert_prefix: master.etcd- +      etcd_hostname: "{{ openshift.common.hostname }}" +      etcd_ip: "{{ openshift.common.ip }}"      when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config  - name: Create temp directory for syncing certs @@ -98,7 +112,7 @@                                     | oo_filter_list(filter_attr='etcd_client_certs_missing') }}"      sync_tmpdir: "{{ hostvars.localhost.g_master_mktemp.stdout }}"    roles: -  - etcd_certificates +  - openshift_etcd_certificates    post_tasks:    - name: Create a tarball of the etcd certs      command: > diff --git a/playbooks/common/openshift-master/restart.yml b/playbooks/common/openshift-master/restart.yml index 02449e40d..57a63cfee 100644 --- a/playbooks/common/openshift-master/restart.yml +++ b/playbooks/common/openshift-master/restart.yml @@ -97,7 +97,7 @@        name: "{{ item }}"        groups: oo_active_masters        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ groups.oo_masters_to_config | default([]) }}"      when: (hostvars[item]['is_active'] | default(false)) | bool    - name: Evaluate oo_current_masters @@ -105,7 +105,7 @@        name: "{{ item }}"        groups: oo_current_masters        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ groups.oo_masters_to_config | default([]) }}"      when: (hostvars[item]['current_host'] | default(false)) | bool diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index 7ca941732..264935a63 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -105,7 +105,7 @@        name: "{{ item }}"        groups: oo_containerized_master_nodes        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}" -      ansible_sudo: "{{ g_sudo | default(omit) }}" +      ansible_become: "{{ g_sudo | default(omit) }}"      with_items: "{{ groups.oo_nodes_to_config | default([]) }}"      when: hostvars[item].openshift.common.is_containerized | bool and (item in groups.oo_nodes_to_config and item in groups.oo_masters_to_config) @@ -119,7 +119,7 @@      # hostvars[groups.oo_first_master.0].openshift.hosted.registry instead of      # hardcoding      openshift_docker_hosted_registry_insecure: True -    openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.master.portal_net }}" +    openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"    roles:    - openshift_node @@ -132,7 +132,7 @@      # hostvars[groups.oo_first_master.0].openshift.hosted.registry instead of      # hardcoding      openshift_docker_hosted_registry_insecure: True -    openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.master.portal_net }}" +    openshift_docker_hosted_registry_network: "{{ hostvars[groups.oo_first_master.0].openshift.common.portal_net }}"    roles:    - openshift_node @@ -154,6 +154,8 @@        etcd_cert_subdir: openshift-node-{{ openshift.common.hostname }}        etcd_cert_config_dir: "{{ openshift.common.config_base }}/node"        etcd_cert_prefix: node.etcd- +      etcd_hostname: "{{ openshift.common.hostname }}" +      etcd_ip: "{{ openshift.common.ip }}"      when: groups.oo_etcd_to_config is defined and groups.oo_etcd_to_config and (openshift.common.use_flannel | bool)  - name: Configure flannel etcd certificates @@ -168,7 +170,7 @@                                     | oo_filter_list(filter_attr='etcd_client_flannel_certs_missing') | default([]) }}"      when: etcd_client_flannel_certs_missing is defined and etcd_client_flannel_certs_missing    roles: -  - role: etcd_certificates +  - role: openshift_etcd_certificates      when: openshift_use_flannel | default(false) | bool    post_tasks:    - name: Create a tarball of the etcd flannel certs diff --git a/playbooks/gce/openshift-cluster/config.yml b/playbooks/gce/openshift-cluster/config.yml index ba37a3a1f..283f460a9 100644 --- a/playbooks/gce/openshift-cluster/config.yml +++ b/playbooks/gce/openshift-cluster/config.yml @@ -12,7 +12,7 @@      openshift_deployment_type: "{{ deployment_type }}"      openshift_hostname: "{{ gce_private_ip }}"      openshift_registry_selector: 'type=infra' -    openshift_router_selector: 'type=infra' +    openshift_hosted_router_selector: 'type=infra'      openshift_infra_nodes: "{{ g_infra_hosts }}"      openshift_master_cluster_method: 'native'      openshift_use_openshift_sdn: "{{ lookup('oo_option', 'use_openshift_sdn') }}" diff --git a/playbooks/gce/openshift-cluster/list.yml b/playbooks/gce/openshift-cluster/list.yml index 992033d16..2b1efc3e4 100644 --- a/playbooks/gce/openshift-cluster/list.yml +++ b/playbooks/gce/openshift-cluster/list.yml @@ -15,7 +15,7 @@        name: "{{ item }}"        groups: oo_list_hosts        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: groups[scratch_group] | default([], true) | difference(['localhost']) | difference(groups.status_terminated | default([], true))  - name: List Hosts diff --git a/playbooks/gce/openshift-cluster/service.yml b/playbooks/gce/openshift-cluster/service.yml index 914f38c1f..9942a0fd1 100644 --- a/playbooks/gce/openshift-cluster/service.yml +++ b/playbooks/gce/openshift-cluster/service.yml @@ -15,14 +15,14 @@        name: "{{ item }}"        groups: g_service_nodes        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ node_hosts | default([]) | difference(['localhost']) | difference(groups.status_terminated) }}"    - add_host:        name: "{{ item }}"        groups: g_service_masters        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ master_hosts | default([]) | difference(['localhost']) | difference(groups.status_terminated) }}"  - include: ../../common/openshift-node/service.yml diff --git a/playbooks/gce/openshift-cluster/tasks/launch_instances.yml b/playbooks/gce/openshift-cluster/tasks/launch_instances.yml index 8ebf71cd4..0cfb1018f 100644 --- a/playbooks/gce/openshift-cluster/tasks/launch_instances.yml +++ b/playbooks/gce/openshift-cluster/tasks/launch_instances.yml @@ -39,7 +39,7 @@      hostname: "{{ item.name }}"      ansible_ssh_host: "{{ item.public_ip }}"      ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -    ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +    ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      groups: "{{ item.tags | oo_prepend_strings_in_list('tag_') | join(',') }}"      gce_public_ip: "{{ item.public_ip }}"      gce_private_ip: "{{ item.private_ip }}" diff --git a/playbooks/gce/openshift-cluster/terminate.yml b/playbooks/gce/openshift-cluster/terminate.yml index d835c53ba..e64eddee0 100644 --- a/playbooks/gce/openshift-cluster/terminate.yml +++ b/playbooks/gce/openshift-cluster/terminate.yml @@ -11,7 +11,7 @@        name: "{{ item }}"        groups: oo_hosts_to_terminate        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: (groups['tag_clusterid-' ~ cluster_id] | default([])) | difference(['localhost'])  - name: Unsubscribe VMs diff --git a/playbooks/gce/openshift-cluster/update.yml b/playbooks/gce/openshift-cluster/update.yml index 2dc540978..95cdd177e 100644 --- a/playbooks/gce/openshift-cluster/update.yml +++ b/playbooks/gce/openshift-cluster/update.yml @@ -13,7 +13,7 @@        name: "{{ item }}"        groups: oo_hosts_to_update        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ g_all_hosts | default([]) }}"  - include: ../../common/openshift-cluster/update_repos_and_packages.yml diff --git a/playbooks/gce/openshift-cluster/vars.yml b/playbooks/gce/openshift-cluster/vars.yml index d173213fc..1497d5520 100644 --- a/playbooks/gce/openshift-cluster/vars.yml +++ b/playbooks/gce/openshift-cluster/vars.yml @@ -5,19 +5,19 @@ deployment_rhel7_ent_base:    image: "{{ lookup('oo_option', 'image_name') | default('rhel-7', True) }}"    machine_type: "{{ lookup('oo_option', 'machine_type') | default('n1-standard-1', True) }}"    ssh_user: "{{ lookup('env', 'gce_ssh_user') |  default(ansible_ssh_user, true) }}" -  sudo: yes +  become: yes  deployment_vars:    origin:      image: "{{ lookup('oo_option', 'image_name') | default('centos-7', True) }}"      machine_type: "{{ lookup('oo_option', 'machine_type') | default('n1-standard-1', True) }}"      ssh_user: "{{ lookup('env', 'gce_ssh_user') |  default(ansible_ssh_user, true) }}" -    sudo: yes +    become: yes    online:      image: libra-rhel7      machine_type: n1-standard-1      ssh_user: root -    sudo: no +    become: no    enterprise: "{{ deployment_rhel7_ent_base }}"    openshift-enterprise: "{{ deployment_rhel7_ent_base }}"    atomic-enterprise: "{{ deployment_rhel7_ent_base }}" diff --git a/playbooks/libvirt/openshift-cluster/config.yml b/playbooks/libvirt/openshift-cluster/config.yml index 0e003ef67..5bfe61657 100644 --- a/playbooks/libvirt/openshift-cluster/config.yml +++ b/playbooks/libvirt/openshift-cluster/config.yml @@ -14,7 +14,7 @@      openshift_debug_level: "{{ debug_level }}"      openshift_deployment_type: "{{ deployment_type }}"      openshift_registry_selector: 'type=infra' -    openshift_router_selector: 'type=infra' +    openshift_hosted_router_selector: 'type=infra'      openshift_infra_nodes: "{{ g_infra_hosts }}"      openshift_master_cluster_method: 'native'      openshift_use_openshift_sdn: "{{ lookup('oo_option', 'use_openshift_sdn') }}" diff --git a/playbooks/libvirt/openshift-cluster/list.yml b/playbooks/libvirt/openshift-cluster/list.yml index 6cb81ee79..314be1fab 100644 --- a/playbooks/libvirt/openshift-cluster/list.yml +++ b/playbooks/libvirt/openshift-cluster/list.yml @@ -15,7 +15,7 @@        name: "{{ item }}"        groups: oo_list_hosts        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: groups[scratch_group] | default([]) | difference(['localhost'])  - name: List Hosts diff --git a/playbooks/libvirt/openshift-cluster/service.yml b/playbooks/libvirt/openshift-cluster/service.yml index cd07c8701..6bd0516e3 100644 --- a/playbooks/libvirt/openshift-cluster/service.yml +++ b/playbooks/libvirt/openshift-cluster/service.yml @@ -18,7 +18,7 @@      add_host:        name: "{{ item }}"        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"        groups: g_service_masters      with_items: "{{ g_master_hosts | default([]) }}" @@ -26,7 +26,7 @@      add_host:        name: "{{ item }}"        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"        groups: g_service_nodes      with_items: "{{ g_node_hosts | default([]) }}" diff --git a/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml b/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml index 937a765fa..4330179f4 100644 --- a/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml +++ b/playbooks/libvirt/openshift-cluster/tasks/launch_instances.yml @@ -113,7 +113,7 @@      hostname: '{{ item.0 }}'      ansible_ssh_host: '{{ item.1 }}'      ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -    ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +    ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      groups: "tag_environment-{{ cluster_env }}, tag_host-type-{{ type }}, tag_sub-host-type-{{ g_sub_host_type }}, tag_clusterid-{{ cluster_id }}"      openshift_node_labels: "{{ node_label }}"    with_together: diff --git a/playbooks/libvirt/openshift-cluster/terminate.yml b/playbooks/libvirt/openshift-cluster/terminate.yml index d6251ac83..cc95ec680 100644 --- a/playbooks/libvirt/openshift-cluster/terminate.yml +++ b/playbooks/libvirt/openshift-cluster/terminate.yml @@ -14,7 +14,7 @@        name: "{{ item }}"        groups: oo_hosts_to_terminate        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: groups[cluster_group] | default([])  - name: Unsubscribe VMs diff --git a/playbooks/libvirt/openshift-cluster/update.yml b/playbooks/libvirt/openshift-cluster/update.yml index 2dc540978..95cdd177e 100644 --- a/playbooks/libvirt/openshift-cluster/update.yml +++ b/playbooks/libvirt/openshift-cluster/update.yml @@ -13,7 +13,7 @@        name: "{{ item }}"        groups: oo_hosts_to_update        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ g_all_hosts | default([]) }}"  - include: ../../common/openshift-cluster/update_repos_and_packages.yml diff --git a/playbooks/libvirt/openshift-cluster/vars.yml b/playbooks/libvirt/openshift-cluster/vars.yml index aa0c69e08..ca0c903ac 100644 --- a/playbooks/libvirt/openshift-cluster/vars.yml +++ b/playbooks/libvirt/openshift-cluster/vars.yml @@ -20,7 +20,7 @@ deployment_rhel7_ent_base:                  default('25f880767ec6bf71beb532e17f1c45231640bbfdfbbb1dffb79d2c1b328388e0', True) }}"      compression: ""    ssh_user: openshift -  sudo: yes +  become: yes  deployment_vars:    origin: @@ -34,14 +34,14 @@ deployment_vars:        sha256: "{{ lookup('oo_option', 'image_sha256') |                    default('dd0f5e610e7c5ffacaca35ed7a78a19142a588f4543da77b61c1fb0d74400471', True) }}"      ssh_user: openshift -    sudo: yes +    become: yes    online:      image:        url:        name:        sha256:      ssh_user: root -    sudo: no +    become: no    enterprise: "{{ deployment_rhel7_ent_base }}"    openshift-enterprise: "{{ deployment_rhel7_ent_base }}"    atomic-enterprise: "{{ deployment_rhel7_ent_base }}" diff --git a/playbooks/openstack/openshift-cluster/config.yml b/playbooks/openstack/openshift-cluster/config.yml index 093beaf03..319202982 100644 --- a/playbooks/openstack/openshift-cluster/config.yml +++ b/playbooks/openstack/openshift-cluster/config.yml @@ -11,7 +11,7 @@      openshift_debug_level: "{{ debug_level }}"      openshift_deployment_type: "{{ deployment_type }}"      openshift_registry_selector: 'type=infra' -    openshift_router_selector: 'type=infra' +    openshift_hosted_router_selector: 'type=infra'      openshift_infra_nodes: "{{ g_infra_hosts }}"      openshift_master_cluster_method: 'native'      openshift_use_openshift_sdn: "{{ lookup('oo_option', 'use_openshift_sdn') }}" diff --git a/playbooks/openstack/openshift-cluster/dns.yml b/playbooks/openstack/openshift-cluster/dns.yml index 5e7671a48..02bcb0953 100644 --- a/playbooks/openstack/openshift-cluster/dns.yml +++ b/playbooks/openstack/openshift-cluster/dns.yml @@ -12,7 +12,7 @@        name: "{{ item }}"        groups: oo_dns_hosts_to_update        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ groups[cluster_id ~ '-dns'] }}"    - name: Evaluate oo_hosts_to_add_in_dns @@ -20,7 +20,7 @@        name: "{{ item }}"        groups: oo_hosts_to_add_in_dns        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ groups['tag_clusterid_' ~ cluster_id] }}"  - name: Gather facts diff --git a/playbooks/openstack/openshift-cluster/files/heat_stack.yaml b/playbooks/openstack/openshift-cluster/files/heat_stack.yaml index dd6a22cbe..2f05c3adc 100644 --- a/playbooks/openstack/openshift-cluster/files/heat_stack.yaml +++ b/playbooks/openstack/openshift-cluster/files/heat_stack.yaml @@ -350,7 +350,6 @@ resources:            port_range_min: 10250            port_range_max: 10250            remote_mode: remote_group_id -          remote_group_id: { get_resource: master-secgrp }          - direction: ingress            protocol: udp            port_range_min: 4789 diff --git a/playbooks/openstack/openshift-cluster/launch.yml b/playbooks/openstack/openshift-cluster/launch.yml index 0afcad72e..a5b6dc8d9 100644 --- a/playbooks/openstack/openshift-cluster/launch.yml +++ b/playbooks/openstack/openshift-cluster/launch.yml @@ -106,7 +106,7 @@        hostname: '{{ item[0] }}'        ansible_ssh_host: '{{ item[2] }}'        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"        groups: 'tag_environment_{{ cluster_env }}, tag_host-type_etcd, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'        openshift_node_labels:          type: "etcd" @@ -120,7 +120,7 @@        hostname: '{{ item[0] }}'        ansible_ssh_host: '{{ item[2] }}'        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"        groups: 'tag_environment_{{ cluster_env }}, tag_host-type_master, tag_sub-host-type_default, tag_clusterid_{{ cluster_id }}'        openshift_node_labels:          type: "master" @@ -134,7 +134,7 @@        hostname: '{{ item[0] }}'        ansible_ssh_host: '{{ item[2] }}'        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"        groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_compute, tag_clusterid_{{ cluster_id }}'        openshift_node_labels:          type: "compute" @@ -148,7 +148,7 @@        hostname: '{{ item[0] }}'        ansible_ssh_host: '{{ item[2] }}'        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"        groups: 'tag_environment_{{ cluster_env }}, tag_host-type_node, tag_sub-host-type_infra, tag_clusterid_{{ cluster_id }}'        openshift_node_labels:          type: "infra" @@ -162,7 +162,7 @@        hostname: '{{ parsed_outputs.dns_name }}'        ansible_ssh_host: '{{ parsed_outputs.dns_floating_ip }}'        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"        groups: '{{ cluster_id }}-dns'    - name: Wait for ssh diff --git a/playbooks/openstack/openshift-cluster/list.yml b/playbooks/openstack/openshift-cluster/list.yml index 123ebd323..78ee3328b 100644 --- a/playbooks/openstack/openshift-cluster/list.yml +++ b/playbooks/openstack/openshift-cluster/list.yml @@ -16,7 +16,7 @@        groups: oo_list_hosts        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}"        ansible_ssh_host: "{{ hostvars[item].ansible_ssh_host | default(item) }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: groups[scratch_group] | default([]) | difference(['localhost'])  - name: List Hosts diff --git a/playbooks/openstack/openshift-cluster/terminate.yml b/playbooks/openstack/openshift-cluster/terminate.yml index a1fb41b53..063d775e1 100644 --- a/playbooks/openstack/openshift-cluster/terminate.yml +++ b/playbooks/openstack/openshift-cluster/terminate.yml @@ -10,7 +10,7 @@        name: "{{ item }}"        groups: oo_hosts_to_terminate        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: (groups['tag_environment_' ~ cluster_env]|default([])) | intersect(groups['tag_clusterid_' ~ cluster_id ]|default([]))  - name: Unsubscribe VMs diff --git a/playbooks/openstack/openshift-cluster/update.yml b/playbooks/openstack/openshift-cluster/update.yml index 16027b15c..78ba7fbec 100644 --- a/playbooks/openstack/openshift-cluster/update.yml +++ b/playbooks/openstack/openshift-cluster/update.yml @@ -15,7 +15,7 @@        name: "{{ item }}"        groups: oo_hosts_to_update        ansible_ssh_user: "{{ deployment_vars[deployment_type].ssh_user }}" -      ansible_sudo: "{{ deployment_vars[deployment_type].sudo }}" +      ansible_become: "{{ deployment_vars[deployment_type].sudo }}"      with_items: "{{ g_all_hosts | default([]) }}"  - include: ../../common/openshift-cluster/update_repos_and_packages.yml diff --git a/playbooks/openstack/openshift-cluster/vars.yml b/playbooks/openstack/openshift-cluster/vars.yml index ee26d223e..d45ab6b9e 100644 --- a/playbooks/openstack/openshift-cluster/vars.yml +++ b/playbooks/openstack/openshift-cluster/vars.yml @@ -21,17 +21,17 @@ openstack_flavor:  deployment_rhel7_ent_base:    image: "{{ lookup('oo_option', 'image_name') | default('rhel-guest-image-7.2-20151102.0.x86_64', True) }}"    ssh_user: openshift -  sudo: yes +  become: yes  deployment_vars:    origin:      image: "{{ lookup('oo_option', 'image_name') | default('centos-70-raw', True) }}"      ssh_user: openshift -    sudo: yes +    become: yes    online:      image:      ssh_user: root -    sudo: no +    become: no    enterprise: "{{ deployment_rhel7_ent_base }}"    openshift-enterprise: "{{ deployment_rhel7_ent_base }}"    atomic-enterprise: "{{ deployment_rhel7_ent_base }}" | 
