summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/rpm_upgrade.yml
blob: 5c96ad09483df50abcb9718ba5086545c63b2847 (plain)
1
2
3
4
5
6
7
8
9
- name: Upgrade packages
  command: "{{ ansible_pkg_mgr}} update -y {{ openshift.common.service_type }}-{{ component }}-{{ g_new_version }}"

- 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