Skip to content

Commit

Permalink
fix: executor database privileges
Browse files Browse the repository at this point in the history
  • Loading branch information
Nolife999 committed Jun 6, 2024
1 parent bf2cc30 commit e1c4dc9
Showing 1 changed file with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,16 @@ private ExecutorDatabaseStatefulTemplate() {
}
},
"securityContext": {
"runAsUser": 0
"runAsNonRoot": true,
"allowPrivilegeEscalation": false,
"capabilities": {
"drop": [
"ALL"
]
},
"seccompProfile": {
"type": "RuntimeDefault"
}
},
"terminationMessagePath": "/dev/termination-log",
"terminationMessagePolicy": "File",
Expand Down

0 comments on commit e1c4dc9

Please sign in to comment.