diff options
author | Andrew Butcher <abutcher@redhat.com> | 2015-10-21 16:17:39 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2015-10-22 16:52:35 -0400 |
commit | 7f5c403e144e6ef4d39bf7b11adb4c4a8976521c (patch) | |
tree | be0917a61e45ccfb492895e59c06f0b36c39c574 /playbooks/adhoc/upgrades | |
parent | ab959a27d43b1f3a1ef1bbc6eccdde24be1c89f0 (diff) | |
download | openshift-7f5c403e144e6ef4d39bf7b11adb4c4a8976521c.tar.gz openshift-7f5c403e144e6ef4d39bf7b11adb4c4a8976521c.tar.bz2 openshift-7f5c403e144e6ef4d39bf7b11adb4c4a8976521c.tar.xz openshift-7f5c403e144e6ef4d39bf7b11adb4c4a8976521c.zip |
Add proxy client certs to master config.
Diffstat (limited to 'playbooks/adhoc/upgrades')
-rw-r--r-- | playbooks/adhoc/upgrades/upgrade.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/playbooks/adhoc/upgrades/upgrade.yml b/playbooks/adhoc/upgrades/upgrade.yml index 56a1df860..ae1d0127c 100644 --- a/playbooks/adhoc/upgrades/upgrade.yml +++ b/playbooks/adhoc/upgrades/upgrade.yml @@ -1,4 +1,14 @@ --- +- name: Upgrade base package on masters + hosts: masters + roles: + - openshift_facts + vars: + openshift_version: "{{ openshift_pkg_version | default('') }}" + tasks: + - name: Upgrade base package + yum: pkg={{ openshift.common.service_type }}{{ openshift_version }} state=latest + - name: Re-Run cluster configuration to apply latest configuration changes include: ../../common/openshift-cluster/config.yml vars: |