Skip to content

Commit

Permalink
Restart conda-store worker when new conda env is added to qhub-config…
Browse files Browse the repository at this point in the history
….yaml (#1437)
  • Loading branch information
iameskild authored Sep 16, 2022
1 parent 77265d8 commit bac134e
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,9 @@ resource "kubernetes_deployment" "worker" {

annotations = {
# This lets us autorestart when the conifg changes!
"checksum/config-map" = sha256(jsonencode(kubernetes_config_map.conda-store-config.data))
"checksum/secret" = sha256(jsonencode(kubernetes_secret.conda-store-secret.data))
"checksum/config-map" = sha256(jsonencode(kubernetes_config_map.conda-store-config.data))
"checksum/secret" = sha256(jsonencode(kubernetes_secret.conda-store-secret.data))
"checksum/conda-environments" = sha256(jsonencode(kubernetes_config_map.conda-store-environments.data))
}
}

Expand Down

0 comments on commit bac134e

Please sign in to comment.