Skip to content

Commit

Permalink
fix: metrics targetPort https -> 8443 (#326)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
arturshadnik authored Dec 16, 2024
1 parent 0c5d048 commit 591c8bf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chart/validator-plugin-azure/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ The following table lists the configurable parameters of the Validator-plugin-az
| `controllerManager.volumes` | | `[]` |
| `controllerManager.podLabels` | | `{}` |
| `kubernetesClusterDomain` | | `"cluster.local"` |
| `metricsService.ports` | | `[{"name": "https", "port": 8443, "protocol": "TCP", "targetPort": "https"}]` |
| `metricsService.ports` | | `[{"name": "https", "port": 8443, "protocol": "TCP", "targetPort": 8443}]` |
| `metricsService.type` | | `"ClusterIP"` |
| `auth.serviceAccountName` | | `""` |
| `azureEnvironment` | | `"AzureCloud"` |
Expand Down
2 changes: 1 addition & 1 deletion chart/validator-plugin-azure/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ metricsService:
- name: https
port: 8443
protocol: TCP
targetPort: https
targetPort: 8443
type: ClusterIP
auth:
# Override the service account used by Azure validator (optional, could be used for WorkloadIdentityCredentials on AKS)
Expand Down

0 comments on commit 591c8bf

Please sign in to comment.