Skip to content

Commit 7df785a

Browse files
authored
fix: metrics targetPort https -> 8443 (#427)
Metrics server is exposed on port 8443. This PR updates the metrics service chart value to match this, to ensure it's accessible. --------- Signed-off-by: Artur Shad Nik <[email protected]>
1 parent b3b0a37 commit 7df785a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

chart/validator-plugin-vsphere/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The following table lists the configurable parameters of the Validator-plugin-vs
2323
| `controllerManager.replicas` | | `1` |
2424
| `controllerManager.serviceAccount.annotations` | | `{}` |
2525
| `kubernetesClusterDomain` | | `"cluster.local"` |
26-
| `metricsService.ports` | | `[{"name": "https", "port": 8443, "protocol": "TCP", "targetPort": "https"}]` |
26+
| `metricsService.ports` | | `[{"name": "https", "port": 8443, "protocol": "TCP", "targetPort": 8443}]` |
2727
| `metricsService.type` | | `"ClusterIP"` |
2828

2929

chart/validator-plugin-vsphere/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ metricsService:
2828
- name: https
2929
port: 8443
3030
protocol: TCP
31-
targetPort: https
31+
targetPort: 8443
3232
type: ClusterIP

0 commit comments

Comments
 (0)