summaryrefslogtreecommitdiffstats
path: root/ci/config_tpl/juju2/bundlek8_tpl/etcd.yaml
blob: c8747edd597401b7df82a451aeb3105889a77080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
    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 %}