Merge "enable new fabric and network creation"
[joid.git] / ci / config_tpl / juju2 / bundlek8_tpl / etcd.yaml
index ba99d0e..c8747ed 100644 (file)
@@ -1,6 +1,20 @@
     etcd:
-      charm: "./{{ ubuntu.release }}/etcd"
+      charm: "cs:~containers/etcd"
+{% if k8.feature.loadbalancer %}
+      num_units: 3
+{% else %}
       num_units: 1
+{% endif %}
+{% if os.service.bindings %}
+      bindings:
+        "": internal-api
+{% endif %}
       to:
+{% if k8.feature.loadbalancer %}
+{% for unit_id in to_select() %}
+        - "lxd:nodes/0"
+{% endfor %}
+{% else %}
         - "nodes/0"
+{% endif %}