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
A PR to create a new namespace referenced a non existing namespace (due to a typo) in a kustomization.yaml namespace attribute. The Terraform plan of this change was all green, because the namespace name, while non-existent, was valid. Yet the apply naturally failed trying to create resources in a namespace that did not exist.
Currently, server side dry-runs are only used during update. Running create dry-runs should also surface above error during plan.
The text was updated successfully, but these errors were encountered:
* requires namespace to exist for namespaced resources
* requires CRD to exist for custom objects
If namespace or CRD does not exist, the server side dry-run
result is ignored for the respective resource.
* requires namespace to exist for namespaced resources
* requires CRD to exist for custom objects
If namespace or CRD does not exist, the server side dry-run
result is ignored for the respective resource.
A PR to create a new namespace referenced a non existing namespace (due to a typo) in a kustomization.yaml
namespace
attribute. The Terraform plan of this change was all green, because the namespace name, while non-existent, was valid. Yet the apply naturally failed trying to create resources in a namespace that did not exist.Currently, server side dry-runs are only used during update. Running create dry-runs should also surface above error during plan.
The text was updated successfully, but these errors were encountered: