diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-01-09 09:15:23 -0500 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2017-01-09 09:15:23 -0500 |
commit | 1510e35fc9acdc3b477a27a174ec380cde4d6f40 (patch) | |
tree | 4ff37600eeb3823bf1467e6b0b9c879db06b9286 /playbooks/common/openshift-cluster/upgrades | |
parent | f46321e65ec1bcf4d0321b120775cce19242fcf9 (diff) | |
download | openshift-1510e35fc9acdc3b477a27a174ec380cde4d6f40.tar.gz openshift-1510e35fc9acdc3b477a27a174ec380cde4d6f40.tar.bz2 openshift-1510e35fc9acdc3b477a27a174ec380cde4d6f40.tar.xz openshift-1510e35fc9acdc3b477a27a174ec380cde4d6f40.zip |
Use registry.access.redhat.com/rhel7/etcd instead of etcd3
Diffstat (limited to 'playbooks/common/openshift-cluster/upgrades')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/etcd/containerized_tasks.yml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/etcd/containerized_tasks.yml b/playbooks/common/openshift-cluster/upgrades/etcd/containerized_tasks.yml index f88981a0b..5f8b59e17 100644 --- a/playbooks/common/openshift-cluster/upgrades/etcd/containerized_tasks.yml +++ b/playbooks/common/openshift-cluster/upgrades/etcd/containerized_tasks.yml @@ -8,8 +8,7 @@ - name: Set new_etcd_image set_fact: - new_etcd_image: "{{ current_image.stdout | regex_replace('/etcd.*$','/etcd3:' ~ upgrade_version ) if upgrade_version | version_compare('3.0','>=') - else current_image.stdout.split(':')[0] ~ ':' ~ upgrade_version }}" + new_etcd_image: "{{ current_image.stdout | regex_replace('/etcd.*$','/etcd:' ~ upgrade_version ) }}" - name: Pull new etcd image command: "docker pull {{ new_etcd_image }}" |