Files
HetznerTerra/ansible/roles/tailscale-operator/templates/operator-values.yaml.j2

24 lines
545 B
Plaintext
Raw Normal View History

apiServerProxyConfig:
mode: "true"
operatorConfig:
defaultTags:
{% for tag in tailscale_operator_default_tags %}
- "{{ tag }}"
{% endfor %}
nodeSelector:
{% for key, value in tailscale_operator_node_selector.items() %}
{{ key }}: "{{ value }}"
{% endfor %}
tolerations:
{% for tol in tailscale_operator_tolerations %}
- key: "{{ tol.key }}"
operator: "{{ tol.operator }}"
effect: "{{ tol.effect }}"
{% endfor %}
installCRDs: true
proxyConfig:
defaultTags: "{{ tailscale_operator_default_tags | join(',') }}"