fix: make tailscale operator non-blocking by default and gate observability patching on readiness
All checks were successful
Deploy Cluster / Terraform (push) Successful in 44s
Deploy Cluster / Ansible (push) Successful in 22m44s

This commit is contained in:
2026-03-03 21:47:16 +00:00
parent 213c1fb4e4
commit 2bbf05cdca
3 changed files with 26 additions and 4 deletions

View File

@@ -214,8 +214,7 @@
Note: Ensure Tailscale Kubernetes Operator is installed first
when:
- tailscale_oauth_client_id | default('') | length > 0
- tailscale_oauth_client_secret | default('') | length > 0
- tailscale_operator_ready | default(false) | bool
- name: Show observability access details (fallback)
debug:
@@ -231,4 +230,4 @@
Loki: Disabled
{% endif %}
when:
- tailscale_oauth_client_id | default('') | length == 0 or tailscale_oauth_client_secret | default('') | length == 0
- not (tailscale_operator_ready | default(false) | bool)