diff options
Diffstat (limited to 'playbooks')
| -rw-r--r-- | playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml | 6 | 
1 files changed, 3 insertions, 3 deletions
| 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 2f67a3bc2..54bb251f7 100644 --- a/playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml +++ b/playbooks/common/openshift-cluster/upgrades/v3_1_minor/upgrade.yml @@ -13,11 +13,11 @@    tasks:    - name: Upgrade master packages      command: "{{ ansible_pkg_mgr}} update -y {{ openshift.common.service_type }}-master{{ openshift_version }}" -    when: not openshift.common.is_atomic | bool +    when: not openshift.common.is_containerized | bool    - name: Ensure python-yaml present for config upgrade      action: "{{ ansible_pkg_mgr }} name=PyYAML state=present" -    when: not openshift.common.is_atomic | bool +    when: not openshift.common.is_containerized | bool  # Currently 3.1.1 does not have any new configuration settings  # @@ -64,7 +64,7 @@    tasks:    - name: Upgrade node packages      command: "{{ ansible_pkg_mgr }} update -y {{ openshift.common.service_type }}-node{{ openshift_version }}" -    when: not openshift.common.is_atomic | bool +    when: not openshift.common.is_containerized | bool    - name: Restart node service      service: name="{{ openshift.common.service_type }}-node" state=restarted | 
