Merge pull request #17177 from kforsthoevel/fix-hubble-metrics-port

Use the same port for hubble-metrics that is used by cilium
This commit is contained in:
Kubernetes Prow Robot 2025-01-10 00:56:32 -08:00 committed by GitHub
commit 0486349b89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
5 changed files with 10 additions and 11 deletions

View File

@ -5,9 +5,8 @@ so we can avoid port collisions.
See also pkg/wellknownports/wellknownports.go
| Port | Description |
|------|------------------------------------------|
| ---- | ---------------------------------------- |
| 22 | SSH |
| 443 | Kubernetes API |
| 179 | Calico |
@ -31,4 +30,4 @@ See also pkg/wellknownports/wellknownports.go
| 4789 | VXLAN |
| 6942 | Cilium operator prometheus port |
| 9090 | Cilium prometheus port |
| 9091 | Cilium hubble prometheus port |
| 9965 | Cilium hubble prometheus port |

View File

@ -71,7 +71,7 @@ const (
CiliumPrometheusPort = 9090
// CiliumHubblePrometheusPort is the default port where Hubble exposes metrics
CiliumHubblePrometheusPort = 9091
CiliumHubblePrometheusPort = 9965
// VxlanUDP is the port used by VXLAN tunneling over UDP
VxlanUDP = 8472

View File

@ -155,7 +155,7 @@ spec:
version: 9.99.0
- id: k8s-1.16
manifest: networking.cilium.io/k8s-1.16-v1.15.yaml
manifestHash: a634b1417a8cda30b27d6167bad863baccffcd5944662aa73f2afee23c3f6d0d
manifestHash: d517037904591938b5a8f391024ed9c561e54f7adc5bf4bfaf243d2a10a4967a
name: networking.cilium.io
needsPKI: true
needsRollingUpdate: all

View File

@ -79,7 +79,7 @@ data:
hubble-disable-tls: "false"
hubble-listen-address: :4244
hubble-metrics: drop
hubble-metrics-server: :9091
hubble-metrics-server: :9965
hubble-socket-path: /var/run/cilium/hubble.sock
hubble-tls-cert-file: /var/lib/cilium/tls/hubble/server.crt
hubble-tls-client-ca-files: /var/lib/cilium/tls/hubble/client-ca.crt
@ -863,8 +863,8 @@ spec:
hostPort: 4244
name: peer-service
protocol: TCP
- containerPort: 9091
hostPort: 9091
- containerPort: 9965
hostPort: 9965
name: hubble-metrics
protocol: TCP
readinessProbe:

View File

@ -334,7 +334,7 @@ data:
hubble-tls-key-file: /var/lib/cilium/tls/hubble/server.key
hubble-tls-client-ca-files: /var/lib/cilium/tls/hubble/client-ca.crt
{{ if .Hubble.Metrics }}
hubble-metrics-server: ":9091"
hubble-metrics-server: ":9965"
hubble-metrics:
{{- range .Hubble.Metrics }}
{{ . }}
@ -1132,8 +1132,8 @@ spec:
hostPort: 4244
protocol: TCP
{{- if .Hubble.Metrics }}
- containerPort: 9091
hostPort: 9091
- containerPort: 9965
hostPort: 9965
name: hubble-metrics
protocol: TCP
{{- end }}