From fe60c21c5426fbbdb6cc7faaa4cef81db4ad04f5 Mon Sep 17 00:00:00 2001 From: Viktor Liu Date: Thu, 19 Mar 2026 07:07:40 +0100 Subject: [PATCH] Clean up defaults and gate ACME HTTP port on challenge type --- charts/netbird-proxy/values.yaml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/charts/netbird-proxy/values.yaml b/charts/netbird-proxy/values.yaml index 3bb695f..ad8460c 100644 --- a/charts/netbird-proxy/values.yaml +++ b/charts/netbird-proxy/values.yaml @@ -1,4 +1,4 @@ -replicaCount: 2 +replicaCount: 1 image: repository: netbird-proxy @@ -215,13 +215,13 @@ service: # Local preserves client source IP but may cause imbalanced traffic. externalTrafficPolicy: "" -resources: - requests: - cpu: 100m - memory: 64Mi - limits: - cpu: 500m - memory: 256Mi +resources: {} +# requests: +# cpu: 100m +# memory: 64Mi +# limits: +# cpu: 500m +# memory: 256Mi # -- Host aliases to inject into /etc/hosts. hostAliases: [] @@ -244,7 +244,7 @@ affinity: {} podDisruptionBudget: # -- Create a PodDisruptionBudget. - enabled: true + enabled: false # -- Minimum available pods. minAvailable: 1 # -- Maximum unavailable pods (mutually exclusive with minAvailable). @@ -282,18 +282,18 @@ autoscaling: # -- Extra environment variables to add to the proxy container. extraEnv: [] # - name: SSL_CERT_FILE -# value: "/pebble-ca/pebble-ca.pem" +# value: "/custom-ca/ca.pem" # -- Extra volumes to add to the pod. extraVolumes: [] -# - name: pebble-ca +# - name: custom-ca # secret: -# secretName: pebble-ca +# secretName: custom-ca # -- Extra volume mounts to add to the proxy container. extraVolumeMounts: [] -# - name: pebble-ca -# mountPath: /pebble-ca +# - name: custom-ca +# mountPath: /custom-ca # readOnly: true # -- Extra ports to expose on the Service and container.