summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/templates
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-06-18 16:30:23 -0400
committerScott Dodson <sdodson@redhat.com>2017-06-18 20:26:12 -0400
commitd309657b40b71fba2c16aa663397da81e126a2fb (patch)
tree875e910da4f87f77864d6d22be1c66f6c7db873d /roles/openshift_master/templates
parentd7be27f7f9321099e52b54afcce2308ac1e1671f (diff)
downloadopenshift-d309657b40b71fba2c16aa663397da81e126a2fb.tar.gz
openshift-d309657b40b71fba2c16aa663397da81e126a2fb.tar.bz2
openshift-d309657b40b71fba2c16aa663397da81e126a2fb.tar.xz
openshift-d309657b40b71fba2c16aa663397da81e126a2fb.zip
Preserve etcd3 storage if it's already in use
This would be the case if for instance they'd upgraded and then migrated.
Diffstat (limited to 'roles/openshift_master/templates')
-rw-r--r--roles/openshift_master/templates/master.yaml.v1.j26
1 files changed, 6 insertions, 0 deletions
diff --git a/roles/openshift_master/templates/master.yaml.v1.j2 b/roles/openshift_master/templates/master.yaml.v1.j2
index 1935d9592..6c26e5092 100644
--- a/roles/openshift_master/templates/master.yaml.v1.j2
+++ b/roles/openshift_master/templates/master.yaml.v1.j2
@@ -139,6 +139,12 @@ kubernetesMasterConfig:
- v1
{% endif %}
apiServerArguments: {{ openshift.master.api_server_args | default(None) | to_padded_yaml( level=2 ) }}
+{% if r_openshift_master_etcd3_storage or ( r_openshift_master_clean_install and openshift.common.version_gte_3_6 ) %}
+ storage-backend:
+ - etcd3
+ storage-media-type:
+ - application/vnd.kubernetes.protobuf
+{% endif %}
controllerArguments: {{ openshift.master.controller_args | default(None) | to_padded_yaml( level=2 ) }}
masterCount: {{ openshift.master.master_count if openshift.master.cluster_method | default(None) == 'native' else 1 }}
masterIP: {{ openshift.common.ip }}