We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce
$ cat <<EOF > deployment.tf resource kubernetes_namespace default { metadata { name = "terraform-provider-test" } } resource kubernetes_deployment web { metadata { name = "web-test" namespace = "${kubernetes_namespace.default.metadata.0.name}" } spec { selector { app = "test" } strategy { type = "RollingUpdate" } template { metadata { labels { app = "test" } } spec { container { name = "www" image = "nginx:alpine" } } } } } EOF $ tf apply $ tf taint kubernetes_deployment.web $ tf apply 1 error(s) occurred: * kubernetes_deployment.web: 1 error(s) occurred: * kubernetes_deployment.web: Failed to create deployment: object is being deleted: deployments.apps "web" already exists
The text was updated successfully, but these errors were encountered:
No branches or pull requests
To reproduce
The text was updated successfully, but these errors were encountered: