From c9cecbcf3e9d6f07bacc4107dd32b1903b8085c0 Mon Sep 17 00:00:00 2001 From: Nikolai Rodionov Date: Sat, 15 Feb 2025 16:48:36 +0100 Subject: [PATCH] Use nginx rootless ports --- helm/values.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/helm/values.yaml b/helm/values.yaml index 21843b8..a48a681 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -20,13 +20,13 @@ base: livenessProbe: httpGet: path: / - port: 80 + port: 8080 initialDelaySeconds: 3 periodSeconds: 3 readinessProbe: httpGet: path: / - port: 80 + port: 8080 initialDelaySeconds: 3 periodSeconds: 3 volumeMounts: @@ -55,7 +55,7 @@ ingress: service: name: '{{ include "chart.fullname" $ }}-main' port: - number: 80 + number: 8080 path: / pathType: Prefix tls: @@ -68,6 +68,6 @@ services: type: ClusterIP ports: http: - port: 80 - targetPort: 80 + port: 8080 + targetPort: 8080 protocol: TCP