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
Describe the bug
Error: customresourcedefinitions.apiextensions.k8s.io "targetgroupbindings.elbv2.k8s.aws" already exists on k8s_system_load_balancer_controller_install.tf line 37, in resource "k8s_manifest" "load_balancer_controller_crds": 37: resource "k8s_manifest" "load_balancer_controller_crds" {
Steps to reproduce the issue:
data "http" "load_balancer_controller_crds" { url = "https://github.com/aws/eks-charts/raw/master/stable/aws-load-balancer-controller/crds/crds.yaml" } resource "k8s_manifest" "load_balancer_controller_crds" { content = data.http.load_balancer_controller_crds.body namespace = kubernetes_service_account.load_balancer_controller.metadata.0.namespace }
Expected behavior
kubectl delete
curl -o https://......./crd.yaml URL && \ kubectl delete -f crd.yaml && \ kubectl apply -f crd.yaml
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
Steps to reproduce the issue:
Expected behavior
kubectl delete
before doing kubectl apply?The text was updated successfully, but these errors were encountered: