Skip to content

Commit

Permalink
Add missing volume declaration in zuul-executor
Browse files Browse the repository at this point in the history
  • Loading branch information
freyes committed Dec 13, 2024
1 parent 963a9ef commit a71a9e8
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -1246,6 +1246,13 @@ resource "kubernetes_stateful_set" "zuul_executor" {
}
}
termination_grace_period_seconds = 300
volume {
name = "uosci-id-rsa"
secret {
secret_name = "uosci-id-rsa"
default_mode = "0600"
}
}
volume {
name = "zuul-var"
empty_dir {}
Expand Down

0 comments on commit a71a9e8

Please sign in to comment.