You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
every time i change something in the yaml it tries to destroy the yaml and recreate it. it never actualy in-place replace it. this causes operators to do a full restart of clusters sometimes.
i suspect that is because the full yaml is in the terraform state.
is this expected?
or am i simply doing something wrong here?
my tf code is as following.
every time i change something in the yaml it tries to destroy the yaml and recreate it. it never actualy in-place replace it. this causes operators to do a full restart of clusters sometimes.
i suspect that is because the full yaml is in the terraform state.
is this expected?
or am i simply doing something wrong here?
my tf code is as following.
`data "kubectl_path_documents" "kafka-yaml" {
pattern = "./manifest/kafka/*.yaml.tpl"
}
resource "kubectl_manifest" "kafka-GRA7" {
provider = kubectl.GRA7
for_each = toset(data.kubectl_path_documents.kafka-yaml.documents)
yaml_body = each.value
wait = false
wait_for_rollout = false
}`
The text was updated successfully, but these errors were encountered: