summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/templates
diff options
context:
space:
mode:
authorMichael Gugino <mgugino@redhat.com>2017-10-12 15:34:15 -0400
committerMichael Gugino <mgugino@redhat.com>2017-10-12 15:34:15 -0400
commit3442745ebc9f1e272cdb08bfd07655b7ba8414e7 (patch)
treed7ca1421a6d128fae28bd1d5db3606855ea9eba1 /roles/openshift_master/templates
parente3c8b0065af5c7ecfc3746e65620ba7db0ebcf0e (diff)
downloadopenshift-3442745ebc9f1e272cdb08bfd07655b7ba8414e7.tar.gz
openshift-3442745ebc9f1e272cdb08bfd07655b7ba8414e7.tar.bz2
openshift-3442745ebc9f1e272cdb08bfd07655b7ba8414e7.tar.xz
openshift-3442745ebc9f1e272cdb08bfd07655b7ba8414e7.zip
Add ability to set node and master imageConfig to latest
Currently, imageConfig.latest is hard-coded to false. This commit adds an appropriate boolean to enable setting to true. Fixes: https://github.com/openshift/openshift-ansible/issues/1422
Diffstat (limited to 'roles/openshift_master/templates')
-rw-r--r--roles/openshift_master/templates/master.yaml.v1.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/templates/master.yaml.v1.j2 b/roles/openshift_master/templates/master.yaml.v1.j2
index 9b3fbcf49..c555a8791 100644
--- a/roles/openshift_master/templates/master.yaml.v1.j2
+++ b/roles/openshift_master/templates/master.yaml.v1.j2
@@ -115,7 +115,7 @@ etcdStorageConfig:
openShiftStorageVersion: v1
imageConfig:
format: {{ openshift.master.registry_url }}
- latest: false
+ latest: {{ openshift_master_image_config_latest }}
{% if 'image_policy_config' in openshift.master %}
imagePolicyConfig:{{ openshift.master.image_policy_config | to_padded_yaml(level=1) }}
{% endif %}