Skip to content

Commit 52c5488

Browse files
authored
fix: metrics targetPort https -> 8443 (#308)
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 <arturshadnik@gmail.com>
1 parent abb837c commit 52c5488

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chart/validator-plugin-network/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The following table lists the configurable parameters of the Validator-plugin-ne
2424
| `controllerManager.replicas` | | `1` |
2525
| `controllerManager.serviceAccount.annotations` | | `{}` |
2626
| `kubernetesClusterDomain` | | `"cluster.local"` |
27-
| `metricsService.ports` | | `[{"name": "https", "port": 8443, "protocol": "TCP", "targetPort": "https"}]` |
27+
| `metricsService.ports` | | `[{"name": "https", "port": 8443, "protocol": "TCP", "targetPort": 8443}]` |
2828
| `metricsService.type` | | `"ClusterIP"` |
2929
| `env` | | `[]` |
3030
| `proxy.enabled` | | `false` |

chart/validator-plugin-network/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ metricsService:
3030
- name: https
3131
port: 8443
3232
protocol: TCP
33-
targetPort: https
33+
targetPort: 8443
3434
type: ClusterIP
3535

3636
# Optional environment variable configuration

0 commit comments

Comments
 (0)