Skip to content

Commit 0952d63

Browse files
committed
OCPBUGS-50489: Add missing service ports to apiserver service
Add ports 6080 (insecure-readyz) and 17697 (check-endpoints) to the apiserver service. These ports were already exposed by the pods but missing from the service definition, preventing EndpointSlice creation for communication matrix documentation (for mor details see [bug](https://issues.redhat.com/browse/OCPBUGS-50489) description)
1 parent 2a82fec commit 0952d63

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

bindata/assets/kube-apiserver/svc.yaml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,12 @@ spec:
1111
- name: https
1212
port: 443
1313
targetPort: 6443
14+
protocol: TCP
15+
- name: insecure-readyz
16+
port: 6080
17+
targetPort: 6080
18+
protocol: TCP
19+
- name: check-endpoints
20+
port: 17697
21+
targetPort: 17697
22+
protocol: TCP

0 commit comments

Comments
 (0)