diff --git a/src/main/helm/templates/deployment.yaml b/src/main/helm/templates/deployment.yaml
index 87244a81b7e17418780eb783641f4223494cf547..c27b5d9f1144032ffe2ff94847fe171947140d83 100644
--- a/src/main/helm/templates/deployment.yaml
+++ b/src/main/helm/templates/deployment.yaml
@@ -138,13 +138,13 @@ spec:
             name: http
             protocol: TCP
           - containerPort: 9002
-            name: management
+            name: metrics
             protocol: TCP
         readinessProbe:
           failureThreshold: 3
           httpGet:
             path: /q/health/ready
-            port: management
+            port: metrics
             scheme: HTTP
           periodSeconds: 10
           successThreshold: 1
@@ -153,7 +153,7 @@ spec:
           failureThreshold: 10
           httpGet:
             path: /q/health/started
-            port: management
+            port: metrics
             scheme: HTTP
           initialDelaySeconds: 30
           periodSeconds: 10
@@ -164,7 +164,7 @@ spec:
           failureThreshold: 10
           httpGet:
             path: /q/health/started
-            port: management
+            port: metrics
             scheme: HTTP
           initialDelaySeconds: 15
           periodSeconds: 5
diff --git a/src/main/helm/templates/service.yaml b/src/main/helm/templates/service.yaml
index 9f92dffa9d5773601c954c751bbaa2de7bd79e0d..cd4042a86e44606c06e820383273b05b7e3202f5 100644
--- a/src/main/helm/templates/service.yaml
+++ b/src/main/helm/templates/service.yaml
@@ -39,7 +39,7 @@ spec:
     - name: http
       port: 8080
       protocol: TCP
-    - name: management
+    - name: metrics
       port: 9002
       protocol: TCP
   selector:
diff --git a/src/test/helm/deployment_probes_test.yaml b/src/test/helm/deployment_probes_test.yaml
index 3eecd34268d7a60c3898d846df6d42a49f4b3a63..519e64d054a3a57b1f1927b910a9b0b81899e4b8 100644
--- a/src/test/helm/deployment_probes_test.yaml
+++ b/src/test/helm/deployment_probes_test.yaml
@@ -53,7 +53,7 @@ tests:
             failureThreshold: 10
             httpGet:
               path: /q/health/started
-              port: management
+              port: metrics
               scheme: HTTP
             initialDelaySeconds: 15
             periodSeconds: 5
@@ -72,7 +72,7 @@ tests:
             failureThreshold: 3
             httpGet:
               path: /q/health/ready
-              port: management
+              port: metrics
               scheme: HTTP
             periodSeconds: 10
             successThreshold: 1
@@ -86,7 +86,7 @@ tests:
             failureThreshold: 10
             httpGet:
               path: /q/health/started
-              port: management
+              port: metrics
               scheme: HTTP
             initialDelaySeconds: 30
             periodSeconds: 10