Skip to content

Commit

Permalink
fix(coder): added Recreate as strategy type to Grafana and SqlPad
Browse files Browse the repository at this point in the history
  • Loading branch information
Calcagiara committed Dec 4, 2024
1 parent 3cc9b02 commit c71f8c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions charts/digitalhub/confs/coder/grafana-main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,9 @@ resource "kubernetes_deployment" "grafana" {
}
spec {
replicas = 1
strategy {
type = "Recreate"
}
selector {
match_labels = {
"app.kubernetes.io/name" = "grafana-workspace"
Expand Down
3 changes: 3 additions & 0 deletions charts/digitalhub/confs/coder/sqlpad-main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,9 @@ resource "kubernetes_deployment" "sqlpad" {
}
spec {
replicas = 1
strategy {
type = "Recreate"
}
selector {
match_labels = {
"app.kubernetes.io/name" = "sqlpad-workspace"
Expand Down

0 comments on commit c71f8c3

Please sign in to comment.