summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-cluster/upgrades/v3_1_to_v3_2/rpm_upgrade.yml
blob: f5e4d807ef7089cc0b081c8c206fe463966cf763 (plain)
1
2
3
4
5
6
7
8
9
10
# We verified latest rpm available is suitable, so just yum update.
- name: Upgrade packages
  action: "{{ ansible_pkg_mgr }} name={{ openshift.common.service_type }}-{{ component }}{{ openshift_pkg_version }} state=present"

- 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