You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hack/release.toml
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,7 @@ preface = """
24
24
25
25
Talos is built with Go 1.23.4.
26
26
"""
27
+
27
28
[notes.driver-rebind]
28
29
title = "Driver Rebind"
29
30
description = """\
@@ -44,6 +45,35 @@ The kernel argument `talos.unified_cgroup_hierarchy` is now ignored.
44
45
Kernel parameter `talos.auditd.disabled=1` can be used to disable Talos built-in `auditd` service.
45
46
"""
46
47
48
+
[notes.kube-apiserver-authorization-config]
49
+
title = "kube-apiserver Authorization Config"
50
+
description = """\
51
+
When using `.cluster.apiServer.authorizationConfig` the user provided order for the authorizers is honoured and `Node` and `RBAC` authorizers are always added to the end if not explicitly specified.
52
+
53
+
Eg: If user provides only `Webhook` authorizer, the final order will be `Webhook`, `Node`, `RBAC`.
54
+
55
+
To provide a specific order for `Node` or `RBAC` explicitly, user can provide the authorizer in the order they want.
56
+
57
+
Eg:
58
+
59
+
```yaml
60
+
cluster:
61
+
apiServer:
62
+
authorizationConfig:
63
+
- type: Node
64
+
name: Node
65
+
- type: Webhook
66
+
name: Webhook
67
+
webhook:
68
+
connectionInfo:
69
+
type: InClusterConfig
70
+
...
71
+
- type: RBAC
72
+
name: rbac
73
+
```
74
+
75
+
Usage of `authorization-mode` CLI argument will not support this form of customization.
0 commit comments