Tailscale now needs an opaque secret

Somewhere in the definition of the Tailscale operator the configuraiton
changed from taking a basic-auth formatted secret to needing a
customized one. This makes that happen
This commit is contained in:
Greg Hellings
2025-10-19 21:51:24 -05:00
parent 89460c4e21
commit ecf97ea72c
2 changed files with 3 additions and 16 deletions
+3 -3
View File
@@ -8,11 +8,11 @@ spec:
name: operator-oauth name: operator-oauth
deletionPolicy: Delete deletionPolicy: Delete
template: template:
type: kubernetes.io/basic-auth type: Opaque
data: data:
username: |- client_id: |-
{{ .username }} {{ .username }}
password: |- client_secret: |-
{{ .password }} {{ .password }}
data: data:
- secretKey: username - secretKey: username
-13
View File
@@ -1,13 +0,0 @@
#!/usr/bin/env bash
helm repo add tailscale https://pkgs.tailscale.com/helmcharts
helm repo update tailscale
helm upgrade \
--install \
tailscale-operator \
tailscale/tailscale-operator \
--namespace=tailscale \
--create-namespace \
--wait