Skip to content

Commit

Permalink
zuul-executor: set fsGroup to the same user of runAsUser
Browse files Browse the repository at this point in the history
  • Loading branch information
freyes committed Dec 13, 2024
1 parent a71a9e8 commit b7da4a0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1202,8 +1202,9 @@ resource "kubernetes_stateful_set" "zuul_executor" {
}
spec {
security_context {
run_as_user = "10001"
run_as_group = "10001"
run_as_user = "10001"
run_as_group = "10001"
fs_group = "10001"
}
container {
name = "executor"
Expand Down

0 comments on commit b7da4a0

Please sign in to comment.