From b9f59ada556e1b9385c44fe1e6d3469d75c2780d Mon Sep 17 00:00:00 2001 From: Jordan McClintock Date: Sat, 12 Apr 2025 00:20:19 +0000 Subject: [PATCH] feat: add appProtocol --- neo4j/templates/neo4j-svc.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neo4j/templates/neo4j-svc.yaml b/neo4j/templates/neo4j-svc.yaml index 4711143c..f28fc6a7 100644 --- a/neo4j/templates/neo4j-svc.yaml +++ b/neo4j/templates/neo4j-svc.yaml @@ -38,17 +38,20 @@ spec: port: 7687 targetPort: 7687 name: tcp-bolt + appProtocol: tcp {{- if $httpEnabled }} - protocol: TCP port: 7474 targetPort: 7474 name: tcp-http + appProtocol: http {{- end }} {{- if $httpsEnabled }} - protocol: TCP port: 7473 targetPort: 7473 name: tcp-https + appProtocol: https {{- end }} --- {{- with .Values.services.admin }}