diff options
Diffstat (limited to 'playbooks/common/openshift-cluster')
7 files changed, 33 insertions, 29 deletions
| diff --git a/playbooks/common/openshift-cluster/config.yml b/playbooks/common/openshift-cluster/config.yml index a8bd634d3..482fa8441 100644 --- a/playbooks/common/openshift-cluster/config.yml +++ b/playbooks/common/openshift-cluster/config.yml @@ -6,6 +6,3 @@  - include: ../openshift-master/config.yml  - include: ../openshift-node/config.yml -  vars: -    osn_cluster_dns_domain: "{{ hostvars[groups.oo_first_master.0].openshift.dns.domain }}" -    osn_cluster_dns_ip: "{{ hostvars[groups.oo_first_master.0].cluster_dns_ip }}" diff --git a/playbooks/common/openshift-cluster/evaluate_groups.yml b/playbooks/common/openshift-cluster/evaluate_groups.yml index 2bb69614f..34da372a4 100644 --- a/playbooks/common/openshift-cluster/evaluate_groups.yml +++ b/playbooks/common/openshift-cluster/evaluate_groups.yml @@ -12,8 +12,8 @@      when: g_masters_group is not defined    - fail: -      msg: This playbook requires g_nodes_group to be set -    when: g_nodes_group is not defined +      msg: This playbook requires g_nodes_group or g_new_nodes_group to be set +    when: g_nodes_group is not defined and g_new_nodes_group is not defined    - fail:        msg: This playbook requires g_lb_group to be set @@ -35,14 +35,19 @@        ansible_sudo: "{{ g_sudo | default(omit) }}"      with_items: groups[g_masters_group] | default([]) +  # Use g_new_nodes_group if it exists otherwise g_nodes_group +  - set_fact: +      g_nodes_to_config: "{{ g_new_nodes_group | default(g_nodes_group | default([])) }}" +    - name: Evaluate oo_nodes_to_config      add_host:        name: "{{ item }}"        groups: oo_nodes_to_config        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"        ansible_sudo: "{{ g_sudo | default(omit) }}" -    with_items: groups[g_nodes_group] | default([]) +    with_items: groups[g_nodes_to_config] | default([]) +  # Skip adding the master to oo_nodes_to_config when g_new_nodes_group is    - name: Evaluate oo_nodes_to_config      add_host:        name: "{{ item }}" @@ -50,7 +55,7 @@        ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"        ansible_sudo: "{{ g_sudo | default(omit) }}"      with_items: groups[g_masters_group] | default([]) -    when: g_nodeonmaster is defined and g_nodeonmaster == true +    when: g_nodeonmaster | default(false) == true and g_new_nodes_group is not defined    - name: Evaluate oo_first_etcd      add_host: diff --git a/playbooks/common/openshift-cluster/scaleup.yml b/playbooks/common/openshift-cluster/scaleup.yml index 6d2777732..d2ba3fc7a 100644 --- a/playbooks/common/openshift-cluster/scaleup.yml +++ b/playbooks/common/openshift-cluster/scaleup.yml @@ -1,16 +1,6 @@  ---  - include: evaluate_groups.yml -  vars: -    g_etcd_group: "{{ 'etcd' }}" -    g_masters_group: "{{ 'masters' }}" -    g_nodes_group: "{{ 'nodes' }}" -    g_lb_group: "{{ 'lb' }}" -    openshift_cluster_id: "{{ cluster_id | default('default') }}" -    openshift_debug_level: 2 -    openshift_deployment_type: "{{ deployment_type }}"  - include: ../openshift-node/config.yml    vars: -    osn_cluster_dns_domain: "{{ hostvars[groups.oo_first_master.0].openshift.dns.domain }}" -    osn_cluster_dns_ip: "{{ hostvars[groups.oo_first_master.0].openshift.dns.ip }}"      openshift_deployment_type: "{{ deployment_type }}" diff --git a/playbooks/common/openshift-cluster/upgrades/files/pre-upgrade-check b/playbooks/common/openshift-cluster/upgrades/files/pre-upgrade-check index b5459f312..e5c958ebb 100644 --- a/playbooks/common/openshift-cluster/upgrades/files/pre-upgrade-check +++ b/playbooks/common/openshift-cluster/upgrades/files/pre-upgrade-check @@ -111,13 +111,16 @@ def print_validation_header():      overwhelming the user.      """      print """\ -At least one port name does not validate. Valid port names: +At least one port name is invalid and must be corrected before upgrading. +Please update or remove any resources with invalid port names. -    * must be less that 16 chars +  Valid port names must: + +    * be less that 16 characters      * have at least one letter -    * only a-z0-9- -    * do not start or end with - -    * Dashes may not be next to eachother ('--') +    * contain only a-z0-9- +    * not start or end with - +    * not contain dashes next to each other ('--')  """ @@ -142,9 +145,9 @@ def main():      # Where the magic happens      first_error = True      for kind, path in [ +            ('deploymentconfigs', ("spec", "template", "spec", "containers")),              ('replicationcontrollers', ("spec", "template", "spec", "containers")), -            ('pods', ("spec", "containers")), -            ('deploymentconfigs', ("spec", "template", "spec", "containers"))]: +            ('pods', ("spec", "containers"))]:          for item in list_items(kind):              namespace = item["metadata"]["namespace"]              item_name = item["metadata"]["name"] diff --git a/playbooks/common/openshift-cluster/upgrades/files/versions.sh b/playbooks/common/openshift-cluster/upgrades/files/versions.sh index f90719cab..c7c966b60 100644 --- a/playbooks/common/openshift-cluster/upgrades/files/versions.sh +++ b/playbooks/common/openshift-cluster/upgrades/files/versions.sh @@ -2,9 +2,9 @@  yum_installed=$(yum list installed "$@" 2>&1 | tail -n +2 | grep -v 'Installed Packages' | grep -v 'Red Hat Subscription Management' | grep -v 'Error:' | awk '{ print $2 }' | tr '\n' ' ') -yum_available=$(yum list available "$@" 2>&1 | tail -n +2 | grep -v 'Available Packages' | grep -v 'Red Hat Subscription Management' | grep -v 'el7ose' | grep -v 'Error:' | awk '{ print $2 }' | tr '\n' ' ') +yum_available=$(yum list available -q "$@" 2>&1 | tail -n +2 | grep -v 'Available Packages' | grep -v 'Red Hat Subscription Management' | grep -v 'el7ose' | grep -v 'Error:' | awk '{ print $2 }' | tr '\n' ' ')  echo "---" -echo "curr_version: ${yum_installed}"  +echo "curr_version: ${yum_installed}"  echo "avail_version: ${yum_available}" diff --git a/playbooks/common/openshift-cluster/upgrades/library/openshift_upgrade_config.py b/playbooks/common/openshift-cluster/upgrades/library/openshift_upgrade_config.py index a6721bb92..9a065fd1c 100755 --- a/playbooks/common/openshift-cluster/upgrades/library/openshift_upgrade_config.py +++ b/playbooks/common/openshift-cluster/upgrades/library/openshift_upgrade_config.py @@ -78,6 +78,10 @@ def upgrade_master_3_0_to_3_1(ansible_module, config_base, backup):          config['kubernetesMasterConfig'].pop('apiLevels')          changes.append('master-config.yaml: removed kubernetesMasterConfig.apiLevels') +    # Add masterCA to serviceAccountConfig +    if 'serviceAccountConfig' in config and 'masterCA' not in config['serviceAccountConfig']: +        config['serviceAccountConfig']['masterCA'] = config['oauthConfig'].get('masterCA', 'ca.crt') +      # Add proxyClientInfo to master-config      if 'proxyClientInfo' not in config['kubernetesMasterConfig']:          config['kubernetesMasterConfig']['proxyClientInfo'] = { 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 eea147229..0309e8a77 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 @@ -36,9 +36,9 @@    - fail:        msg: > -        This upgrade is only supported for origin and openshift-enterprise +        This upgrade is only supported for origin, openshift-enterprise, and online          deployment types -    when: deployment_type not in ['origin','openshift-enterprise'] +    when: deployment_type not in ['origin','openshift-enterprise', 'online']    - fail:        msg: > @@ -517,24 +517,28 @@      - _default_router.rc == 0      - "'false' in _scc.stdout"      command: > -      {{ oc_cmd }} patch scc/privileged -p '{"allowHostPorts":true,"allowHostNetwork":true}' --loglevel=9 +      {{ oc_cmd }} patch scc/privileged -p +      '{"allowHostPorts":true,"allowHostNetwork":true}' --api-version=v1    - name: Update deployment config to 1.0.4/3.0.1 spec      when: _default_router.rc == 0      command: >        {{ oc_cmd }} patch dc/router -p        '{"spec":{"strategy":{"rollingParams":{"updatePercent":-10},"spec":{"serviceAccount":"router","serviceAccountName":"router"}}}}' +      --api-version=v1    - name: Switch to hostNetwork=true      when: _default_router.rc == 0      command: >        {{ oc_cmd }} patch dc/router -p '{"spec":{"template":{"spec":{"hostNetwork":true}}}}' +      --api-version=v1    - name: Update router image to current version      when: _default_router.rc == 0      command: >        {{ oc_cmd }} patch dc/router -p        '{"spec":{"template":{"spec":{"containers":[{"name":"router","image":"{{ router_image }}"}]}}}}' +      --api-version=v1    - name: Check for default registry      command: > @@ -548,3 +552,4 @@      command: >        {{ oc_cmd }} patch dc/docker-registry -p        '{"spec":{"template":{"spec":{"containers":[{"name":"registry","image":"{{ registry_image }}"}]}}}}' +      --api-version=v1 | 
