mirror of
https://github.com/tailscale/tailscale.git
synced 2025-07-28 23:04:10 +00:00
Update values
This commit is contained in:
parent
14843b758c
commit
984fed4fa7
@ -85,6 +85,8 @@ spec:
|
||||
- name: PROXY_DEFAULT_CLASS
|
||||
value: {{ .Values.proxyConfig.defaultProxyClass }}
|
||||
{{- end }}
|
||||
- name: PROXY_EPHEMERAL
|
||||
value: {{ .Values.operatorConfig.ephemeral | quote }}
|
||||
- name: POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
|
@ -1,2 +0,0 @@
|
||||
- name: PROXY_EPHEMERAL_KEYS
|
||||
value: {{ .Values.operatorConfig.ephemeralKeys | quote }}
|
@ -76,7 +76,7 @@ operatorConfig:
|
||||
# Ephemeral devices are automatically deleted from your tailnet when they
|
||||
# disconnect, helping keep your tailnet clean.
|
||||
# This can be overridden per proxy by setting spec.ephemeral in the ProxyClass.
|
||||
ephemeralKeys: false
|
||||
ephemeral: false
|
||||
|
||||
# In the case that you already have a tailscale ingressclass in your cluster (or vcluster), you can disable the creation here
|
||||
ingressClass:
|
||||
|
@ -5025,6 +5025,8 @@ spec:
|
||||
value: "false"
|
||||
- name: PROXY_FIREWALL_MODE
|
||||
value: auto
|
||||
- name: PROXY_EPHEMERAL
|
||||
value: "false"
|
||||
- name: POD_NAME
|
||||
valueFrom:
|
||||
fieldRef:
|
||||
|
@ -76,7 +76,7 @@ func main() {
|
||||
tsFirewallMode = defaultEnv("PROXY_FIREWALL_MODE", "")
|
||||
defaultProxyClass = defaultEnv("PROXY_DEFAULT_CLASS", "")
|
||||
isDefaultLoadBalancer = defaultBool("OPERATOR_DEFAULT_LOAD_BALANCER", false)
|
||||
useEphemeralKeys = defaultBool("PROXY_EPHEMERAL_KEYS", false)
|
||||
useEphemeralKeys = defaultBool("PROXY_EPHEMERAL", false)
|
||||
)
|
||||
|
||||
var opts []kzap.Opts
|
||||
|
Loading…
x
Reference in New Issue
Block a user