ecoupal-believe
ecoupal-believe
My 2 cents https://github.com/electric-saw/kafta/pull/16
They're is actually an issue here: the cluster_domain variable is used here: https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/modules/kubernetes-addons/external-dns/main.tf#L78 Although it's supposed to be deprecated as it says here: https://github.com/aws-ia/terraform-aws-eks-blueprints/blob/main/modules/kubernetes-addons/external-dns/variables.tf#L20
@johnrk-zz, same problem here with datadog, did you find any workaround ?
Hi @koba1t, thank you for your answer. That's what I thought from looking around the documentations/issues. I understand that component are applied before the transformers but that doesn't help me...
I also got this answer in another thread. That would require to add a new component for each of my actual overlays (foo-service and bar-service and so on) just to...
plugin crashes during apply: panic: runtime error: invalid memory address or nil pointer dereference
Happened to me with 1.10.0. Downgrading to 1.9.0 does it.
I have the same problem, I can't create my ingresses this way: https://apisix.apache.org/docs/ingress-controller/tutorials/proxy-the-httpbin-service-with-ingress/ I have this error message when I apply the ingress manifest: "admission webhook "vingress.elbv2.k8s.aws" denied the request:...
https://github.com/apache/apisix/pull/10934
Yes, I actually found a way using proxy-rewrite plugin and/or rewrite-target-regex. This could be an useful feature to have out of the box.
You can apply something like that: ``` apiVersion: apisix.apache.org/v2 kind: ApisixPluginConfig metadata: name: my-plugin-config spec: plugins: - config: regex_uri: - ^/[^/?]+/{0,1}(.*) - /$1 enable: true name: proxy-rewrite ``` An then...