Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Turrado <jorge_turrado@hotmail.es>
  • Loading branch information
JorTurFer committed Apr 28, 2022
1 parent 53e886f commit 63a812c
Showing 1 changed file with 26 additions and 1 deletion.
27 changes: 26 additions & 1 deletion keda/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,5 +157,30 @@ helm install keda kedacore/keda --namespace keda -f values.yaml

KEDA's default configuration tries to be safest as possible, that's why the configuration is safe as default using these values:
```yaml

podSecurityContext:
operator:
capabilities:
drop:
- ALL
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
metricServer:
capabilities:
drop:
- ALL
allowPrivilegeEscalation: false
## Metrics server needs to write the self-signed cert so it's not possible set this
# readOnlyRootFilesystem: true

securityContext:
operator:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
metricServer:
runAsNonRoot: true
runAsUser: 1000
runAsGroup: 1000
fsGroup: 1000
```

0 comments on commit 63a812c

Please sign in to comment.