Skip to content

Commit 3ccd953

Browse files
committed
OCPBUGS-50492: Add kube_rbac_proxy service
This PR adds a service to port 9637. As for now since it does not have a service, an endpointslice is not created and it is not included in the communication matrix. Adding a service should solve this issue.
1 parent 747fddc commit 3ccd953

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

install/0000_80_machine-config_00_service.yaml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,4 +88,24 @@ spec:
8888
port: 22624
8989
targetPort: 22624
9090
protocol: TCP
91-
91+
---
92+
apiVersion: v1
93+
kind: Service
94+
metadata:
95+
name: kube-rbac-proxy
96+
namespace: openshift-machine-config-operator
97+
labels:
98+
k8s-app: kube-rbac-proxy
99+
annotations:
100+
include.release.openshift.io/ibm-cloud-managed: "true"
101+
include.release.openshift.io/self-managed-high-availability: "true"
102+
include.release.openshift.io/single-node-developer: "true"
103+
service.beta.openshift.io/serving-cert-secret-name: proxy-tls
104+
spec:
105+
type: ClusterIP
106+
selector:
107+
k8s-app: kube-rbac-proxy
108+
ports:
109+
- name: secure-listen
110+
port: 9637
111+
protocol: TCP

0 commit comments

Comments
 (0)