Files
HetznerTerra/ansible/roles/tailscale-operator/templates/operator-values.yaml.j2
MichaelFisher1997 1c39274df7
All checks were successful
Deploy Cluster / Terraform (push) Successful in 54s
Deploy Cluster / Ansible (push) Successful in 22m19s
feat: stabilize tailscale observability exposure with declarative proxy class
2026-03-04 01:37:00 +00:00

25 lines
600 B
Django/Jinja

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(',') }}"
defaultProxyClass: "{{ tailscale_proxyclass_name }}"