Skip to content

Commit

Permalink
Make tls resources depend on cert-manager explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
freyes committed Dec 12, 2024
1 parent da03175 commit 3becc17
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions infrastructure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,7 @@ YAML
}

resource "kubectl_manifest" "zookeeper_server_tls" {
depends_on = [module.cert_manager]
# apply_only = true
# ignore_fields = ["data", "annotations"]
yaml_body = <<YAML
Expand Down Expand Up @@ -353,6 +354,7 @@ spec:
YAML
}
resource "kubectl_manifest" "zookeeper_client_tls" {
depends_on = [module.cert_manager]
# apply_only = true
# ignore_fields = ["data", "annotations"]
server_side_apply = true
Expand Down

0 comments on commit 3becc17

Please sign in to comment.