Skip to content

Commit

Permalink
fix: don't enable securityContext by default
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-elliott committed Feb 16, 2021
1 parent d5ac0c2 commit 883ec6d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion charts/authelia/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: authelia
version: 0.1.9
version: 0.1.10
kubeVersion: ">= 1.13.0"
description: Authelia is a Single Sign-On Multi-Factor portal for web apps
type: application
Expand Down
18 changes: 10 additions & 8 deletions charts/authelia/values.local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,14 +186,16 @@ pod:
updateStrategy: RollingUpdate

securityContext:
container:
runAsUser: 2000
runAsGroup: 2000
fsGroup: 2000
pod:
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
privileged: false
container: { }
# container:
# runAsUser: 2000
# runAsGroup: 2000
# fsGroup: 2000
pod: { }
# pod:
# readOnlyRootFilesystem: true
# allowPrivilegeEscalation: false
# privileged: false

tolerations: [ ]
# tolerations:
Expand Down
18 changes: 10 additions & 8 deletions charts/authelia/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -185,14 +185,16 @@ pod:
updateStrategy: RollingUpdate

securityContext:
container:
runAsUser: 2000
runAsGroup: 2000
fsGroup: 2000
pod:
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
privileged: false
container: { }
# container:
# runAsUser: 2000
# runAsGroup: 2000
# fsGroup: 2000
pod: { }
# pod:
# readOnlyRootFilesystem: true
# allowPrivilegeEscalation: false
# privileged: false

tolerations: [ ]
# tolerations:
Expand Down

0 comments on commit 883ec6d

Please sign in to comment.