Files
HetznerTerra/infrastructure/charts/tailscale-operator/templates/oauth-secret.yaml
T

14 lines
381 B
YAML
Raw Normal View History

2026-04-26 09:17:44 +00:00
# Copyright (c) Tailscale Inc & contributors
# SPDX-License-Identifier: BSD-3-Clause
{{ if and .Values.oauth .Values.oauth.clientId (not .Values.oauth.audience) -}}
apiVersion: v1
kind: Secret
metadata:
name: operator-oauth
namespace: {{ .Release.Namespace }}
stringData:
client_id: {{ .Values.oauth.clientId }}
client_secret: {{ .Values.oauth.clientSecret }}
{{- end -}}