Skip to content

Commit daadfa3

Browse files
Merge pull request #848 from aabughosh/fixsvc10357
OCPBUGS-53290: Missing endpoint slices for open ports the operator uses
2 parents 1fe3664 + de904bb commit daadfa3

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

bindata/assets/config/default-cluster-policy-controller-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: openshiftcontrolplane.config.openshift.io/v1
22
kind: OpenShiftControllerManagerConfig
33
servingInfo:
4-
bindAddress: 0.0.0.0:10357
4+
bindAddress: 127.0.0.1:10357
55
bindNetwork: tcp
66
clientCA: /etc/kubernetes/static-pod-certs/configmaps/client-ca/ca-bundle.crt
77
certFile: /etc/kubernetes/static-pod-resources/secrets/serving-cert/tls.crt

bindata/assets/kube-controller-manager/pod.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,20 +122,23 @@ spec:
122122
scheme: HTTPS
123123
port: 10357
124124
path: healthz
125+
host: localhost
125126
initialDelaySeconds: 0
126127
timeoutSeconds: 3
127128
livenessProbe:
128129
httpGet:
129130
scheme: HTTPS
130131
port: 10357
131132
path: healthz
133+
host: localhost
132134
initialDelaySeconds: 45
133135
timeoutSeconds: 10
134136
readinessProbe:
135137
httpGet:
136138
scheme: HTTPS
137139
port: 10357
138140
path: healthz
141+
host: localhost
139142
initialDelaySeconds: 10
140143
timeoutSeconds: 10
141144
securityContext:

bindata/bootkube/bootstrap-manifests/kube-controller-manager-pod.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,20 +123,23 @@ spec:
123123
scheme: HTTPS
124124
port: 10357
125125
path: healthz
126+
host: localhost
126127
initialDelaySeconds: 0
127128
timeoutSeconds: 3
128129
livenessProbe:
129130
httpGet:
130131
scheme: HTTPS
131132
port: 10357
132133
path: healthz
134+
host: localhost
133135
initialDelaySeconds: 45
134136
timeoutSeconds: 10
135137
readinessProbe:
136138
httpGet:
137139
scheme: HTTPS
138140
port: 10357
139141
path: healthz
142+
host: localhost
140143
initialDelaySeconds: 10
141144
timeoutSeconds: 10
142145
volumes:

0 commit comments

Comments
 (0)