Rename proxy url to domain in netbird-proxy chart

This commit is contained in:
Viktor Liu
2026-02-13 00:16:59 +08:00
parent 4590e30e3d
commit 584c3f090b
2 changed files with 5 additions and 5 deletions
@@ -95,9 +95,9 @@ spec:
- name: NB_PROXY_DEBUG_LOGS
value: "true"
{{- end }}
{{- if .Values.proxy.url }}
- name: NB_PROXY_URL
value: {{ .Values.proxy.url | quote }}
{{- if .Values.proxy.domain }}
- name: NB_PROXY_DOMAIN
value: {{ .Values.proxy.domain | quote }}
{{- end }}
{{- if and .Values.proxy.forwardedProto (ne .Values.proxy.forwardedProto "auto") }}
- name: NB_PROXY_FORWARDED_PROTO
+2 -2
View File
@@ -25,9 +25,9 @@ allowInsecure: false
proxy:
# -- Listen address for the HTTPS reverse proxy.
address: ":8443"
# -- Public URL of the proxy (used for ACME and client access).
# -- Public domain of the proxy (e.g., netbird.example.com).
# Leave empty to auto-derive from the proxy address.
url: ""
domain: ""
# -- X-Forwarded-Proto behaviour: auto, http, or https.
forwardedProto: "auto"
# -- Comma-separated CIDR ranges of trusted upstream proxies.