Skip to content

Commit cdfc442

Browse files
fix: correct user rbac toggle (#353)
Signed-off-by: Oliver Bähler <oliverbaehler@hotmail.com>
1 parent 0dfa584 commit cdfc442

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/sops-operator/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The following Values are available for this chart.
8080
| podSecurityContext | object | `{"enabled":true,"seccompProfile":{"type":"RuntimeDefault"}}` | Set the securityContext |
8181
| priorityClassName | string | `""` | Set the priority class name of the Capsule pod |
8282
| rbac.enabled | bool | `true` | Enable bootstraping of RBAC resources |
83-
| rbac.secretsRole.enabled | bool | `true` | |
83+
| rbac.secretsRole.create | bool | `false` | |
8484
| rbac.secretsRole.labels."rbac.authorization.k8s.io/aggregate-to-admin" | string | `"true"` | |
8585
| readinessProbe | object | `{"httpGet":{"path":"/readyz","port":10080}}` | Configure the readiness probe using Deployment probe spec |
8686
| replicaCount | int | `1` | Amount of replicas |

charts/sops-operator/values.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@
422422
"secretsRole": {
423423
"type": "object",
424424
"properties": {
425-
"enabled": {
425+
"create": {
426426
"type": "boolean"
427427
},
428428
"labels": {

charts/sops-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ rbac:
7676
enabled: true
7777
# Role for delegating secrets
7878
secretsRole:
79-
enabled: true
79+
create: false
8080
labels:
8181
rbac.authorization.k8s.io/aggregate-to-admin: "true"
8282

0 commit comments

Comments
 (0)