|
@@ -5,7 +5,7 @@ r_etcd_common_backup_sufix_name: ''
|
|
|
l_is_etcd_system_container: "{{ (openshift_use_etcd_system_container | default(openshift_use_system_containers | default(false)) | bool) }}"
|
|
|
|
|
|
# runc, docker, host
|
|
|
-r_etcd_common_etcd_runtime: "{{ 'runc' if l_is_etcd_system_container else ('docker' if openshift_is_containerized else 'host') }}"
|
|
|
+r_etcd_common_etcd_runtime: "{{ 'static_pod' if (not (r_etcd_common_skip_command_shim is defined and r_etcd_common_skip_command_shim) or openshift.node.bootstrapped) else ('runc' if l_is_etcd_system_container else ('docker' if openshift_is_containerized else 'host')) }}"
|
|
|
|
|
|
r_etcd_default_version: "3.2.15"
|
|
|
osm_etcd_image: "registry.access.redhat.com/rhel7/etcd:{{ r_etcd_upgrade_version | default(r_etcd_default_version) }}"
|
|
@@ -17,7 +17,12 @@ etcd_image: "{{ etcd_image_dict[openshift_deployment_type | default('origin')] }
|
|
|
# etcd run on a host => use etcdctl command directly
|
|
|
# etcd run as a docker container => use docker exec
|
|
|
# etcd run as a runc container => use runc exec
|
|
|
-r_etcd_common_etcdctl_command: "{{ 'etcdctl' if (r_etcd_common_etcd_runtime == 'host') else ('docker exec etcd_container etcdctl' if (r_etcd_common_etcd_runtime == 'docker') else 'runc exec etcd etcdctl') }}"
|
|
|
+etcdctl_dict:
|
|
|
+ host: 'etcdctl'
|
|
|
+ docker: 'docker exec etcd_container etcdctl'
|
|
|
+ static_pod: '/usr/local/bin/master-exec etcd etcd etcdctl'
|
|
|
+ runc: 'runc exec etcd etcdctl'
|
|
|
+r_etcd_common_etcdctl_command: "{{ etcdctl_dict[r_etcd_common_etcd_runtime | default('runc')] }}"
|
|
|
|
|
|
# etcd server vars
|
|
|
etcd_conf_dir: '/etc/etcd'
|