tailscale: fix startup issue (#2546)

This commit is contained in:
Stavros Kois
2024-06-06 18:08:08 +03:00
committed by GitHub
parent a3d4bd3bd5
commit 1518cc60b0
4 changed files with 12 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ description: Secure remote access to shared resources
annotations:
title: Tailscale
type: application
version: 1.0.40
version: 1.0.41
apiVersion: v2
appVersion: 1.66.4
kubeVersion: '>=1.16.0-0'

View File

@@ -69,6 +69,13 @@ questions:
schema:
type: boolean
default: false
- variable: authOnce
label: Auth Once
description: |
Attempt to log in only if not already logged in.</br>
schema:
type: boolean
default: false
- variable: extraArgs
label: Extra Arguments
description: Extra arguments for Tailscale.

View File

@@ -38,6 +38,7 @@ workload:
TS_SOCKET: /var/run/tailscale/tailscaled.sock
TS_USERSPACE: {{ .Values.tailscaleConfig.userspace | quote }}
TS_ACCEPT_DNS: {{ .Values.tailscaleConfig.acceptDns | quote }}
TS_AUTH_ONCE: {{ .Values.tailscaleConfig.authOnce | quote }}
{{ with .Values.tailscaleConfig.advertiseRoutes }}
TS_ROUTES: {{ join "," . }}
{{ end }}

View File

@@ -9,12 +9,13 @@ resources:
memory: 8Gi
tailscaleConfig:
authkey: ''
hostname: ''
authkey: ""
hostname: ""
advertiseRoutes: []
advertiseExitNode: false
userspace: true
acceptDns: false
authOnce: true
extraArgs: []
extraDaemonArgs: []
additionalEnvs: []