fix tailscale extraArgs (#1396)

This commit is contained in:
Stavros Kois
2023-07-27 21:03:34 +03:00
committed by GitHub
parent f35fdf683d
commit a31caeac46
2 changed files with 3 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.12
version: 1.0.13
apiVersion: v2
appVersion: 1.44.0
kubeVersion: '>=1.16.0-0'

View File

@@ -9,8 +9,8 @@
{{- $args = mustAppend $args "--advertise-exit-node" -}}
{{- end -}}
{{- with .Values.tailscaleConfig.extraArgs -}}
{{- $args = mustAppend $args . -}}
{{- range $arg := .Values.tailscaleConfig.extraArgs -}}
{{- $args = mustAppend $args $arg -}}
{{- end -}}
{{- if $args -}}