diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-02-09 02:45:52 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-09 02:45:52 -0800 |
commit | 3ef7a209dde51c972d25c8ecfc019704ce056db7 (patch) | |
tree | edb25069c7da9c8fc5f42e1321dbe3823ebc39bc /roles/openshift_web_console | |
parent | 15827bd85421fc8fe09487d06efc013292664147 (diff) | |
parent | e6e8c13d7d65c81c287a5b53403866db8280a5bf (diff) | |
download | openshift-3ef7a209dde51c972d25c8ecfc019704ce056db7.tar.gz openshift-3ef7a209dde51c972d25c8ecfc019704ce056db7.tar.bz2 openshift-3ef7a209dde51c972d25c8ecfc019704ce056db7.tar.xz openshift-3ef7a209dde51c972d25c8ecfc019704ce056db7.zip |
Merge pull request #6712 from vrutkovs/avoid-hardcoding-image-version
Automatic merge from submit-queue.
Set default image to openshift_release
Previously `v3.7` was hardcoded as a default value, instead `openshift_release` should be used.
A new var is introduced - `openshift_template_service_broker_image_tag`, similar to vars for other services.
Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1530183
TODO:
* [x] Make sure all images have a variable for image prefix
* [x] Figure out if `latest` is a good default for origin images
* [ ] Set correct `openshift_image_tag` in CI inventory for tests to pass
Diffstat (limited to 'roles/openshift_web_console')
-rw-r--r-- | roles/openshift_web_console/vars/default_images.yml | 2 | ||||
-rw-r--r-- | roles/openshift_web_console/vars/openshift-enterprise.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_web_console/vars/default_images.yml b/roles/openshift_web_console/vars/default_images.yml index 42d331ac5..0bd4e981d 100644 --- a/roles/openshift_web_console/vars/default_images.yml +++ b/roles/openshift_web_console/vars/default_images.yml @@ -1,4 +1,4 @@ --- __openshift_web_console_prefix: "docker.io/openshift/origin-" -__openshift_web_console_version: "latest" +__openshift_web_console_version: "{{ openshift_image_tag }}" __openshift_web_console_image_name: "web-console" diff --git a/roles/openshift_web_console/vars/openshift-enterprise.yml b/roles/openshift_web_console/vars/openshift-enterprise.yml index 375c22067..fd5e4e9a0 100644 --- a/roles/openshift_web_console/vars/openshift-enterprise.yml +++ b/roles/openshift_web_console/vars/openshift-enterprise.yml @@ -1,4 +1,4 @@ --- __openshift_web_console_prefix: "registry.access.redhat.com/openshift3/ose-" -__openshift_web_console_version: "v3.9" +__openshift_web_console_version: "{{ openshift_image_tag }}" __openshift_web_console_image_name: "web-console" |