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:
@@ -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
|
||||||
|
|||||||
@@ -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
|
|
||||||
Reference in New Issue
Block a user