mirror of
https://github.com/truenas/charts.git
synced 2026-04-05 03:39:20 +08:00
tailscale: fix startup issue (#2546)
This commit is contained in:
@@ -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'
|
||||
|
||||
@@ -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.
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -9,12 +9,13 @@ resources:
|
||||
memory: 8Gi
|
||||
|
||||
tailscaleConfig:
|
||||
authkey: ''
|
||||
hostname: ''
|
||||
authkey: ""
|
||||
hostname: ""
|
||||
advertiseRoutes: []
|
||||
advertiseExitNode: false
|
||||
userspace: true
|
||||
acceptDns: false
|
||||
authOnce: true
|
||||
extraArgs: []
|
||||
extraDaemonArgs: []
|
||||
additionalEnvs: []
|
||||
|
||||
Reference in New Issue
Block a user