From ffaf7247fedc0020e4558b848a20daad37a7958f Mon Sep 17 00:00:00 2001 From: SmokyZone Date: Fri, 18 Sep 2026 20:10:39 +0200 Subject: [PATCH] Expose OpenBao UI via NodePort like ArgoCD Matches the existing cluster convention (ArgoCD 30080/30443, Gitea 30300): no Ingress needed, reachable directly at :30200. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- values.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/values.yaml b/values.yaml index 46f4812..ea4cb95 100644 --- a/values.yaml +++ b/values.yaml @@ -34,7 +34,10 @@ openbao: ui: enabled: true - serviceType: ClusterIP + # NodePort, same pattern as ArgoCD (30080/30443) and Gitea (30300): + # reachable at http://:30200 without needing an Ingress. + serviceType: NodePort + serviceNodePort: 30200 injector: # Sidecar-injector webhook is not needed for ESO integration.