From 9d62427f9168080447543cdefeb183919b0fe019 Mon Sep 17 00:00:00 2001 From: Frikky Date: Tue, 30 Sep 2025 13:35:49 +0200 Subject: [PATCH] Configure frontend service as NodePort Added NodePort service type with HTTP and HTTPS ports. --- functions/kubernetes/charts/shuffle/values.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/functions/kubernetes/charts/shuffle/values.yaml b/functions/kubernetes/charts/shuffle/values.yaml index 00b53a29..a3729458 100644 --- a/functions/kubernetes/charts/shuffle/values.yaml +++ b/functions/kubernetes/charts/shuffle/values.yaml @@ -885,6 +885,16 @@ frontend: ## ref: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/ ## labels: {} + type: NodePort + ports: + - name: http + port: 80 + targetPort: 3001 + nodePort: 30080 + - name: https + port: 443 + targetPort: 3443 + nodePort: 30443 ## ServiceAccount configuration ##