Skip to content

Commit 1535432

Browse files
committed
Fix some confused cloud-controller documentation
1 parent 74ffdce commit 1535432

File tree

1 file changed

+8
-17
lines changed

1 file changed

+8
-17
lines changed

‎content/en/docs/concepts/architecture/cloud-controller.md

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,10 @@ routes appropriately. It requires Get access to Node objects.
106106
### Service controller {#authorization-service-controller}
107107

108108
The service controller watches for Service object **create**, **update** and **delete** events and then
109-
configures Endpoints for those Services appropriately (for EndpointSlices, the
110-
kube-controller-manager manages these on demand).
109+
configures load balancers for those Services appropriately.
111110

112111
To access Services, it requires **list**, and **watch** access. To update Services, it requires
113-
**patch** and **update** access.
114-
115-
To set up Endpoints resources for the Services, it requires access to **create**, **list**,
116-
**get**, **watch**, and **update**.
112+
**patch** and **update** access to the `status` subresource.
117113

118114
`v1/Service`:
119115

@@ -173,9 +169,14 @@ rules:
173169
- services
174170
verbs:
175171
- list
172+
- watch
173+
- apiGroups:
174+
- ""
175+
resources:
176+
- services/status
177+
verbs:
176178
- patch
177179
- update
178-
- watch
179180
- apiGroups:
180181
- ""
181182
resources:
@@ -191,16 +192,6 @@ rules:
191192
- list
192193
- update
193194
- watch
194-
- apiGroups:
195-
- ""
196-
resources:
197-
- endpoints
198-
verbs:
199-
- create
200-
- get
201-
- list
202-
- watch
203-
- update
204195
```
205196
206197

0 commit comments

Comments
 (0)