Hello everyone I deployed gooddata-cn in gke with ...
# gooddata-cn
p
Hello everyone I deployed gooddata-cn in gke with from this Guide https://www.gooddata.com/developers/cloud-native/doc/1.3/installation/k8s/helm-chart-installation/ but after the creation of organization https://www.gooddata.com/developers/cloud-native/doc/1.4/administration/organization/ the ingress isn't created automatically and i just created ingress manually when I'm accessing it says,
Copy code
{"title":"Not Found","status":404,"detail":"404 NOT_FOUND \"No Organization found for hostname
can anyone help on this?
r
Hi, what version of gooddata-cn helm chart did you installed? You're referring both to 1.3 and 1.4 documentation, so I'd like to know. There's a slight but important change between these two versions that relates to ingress configuration. In version 1.3 and older, you need to have
<http://kubernetes.io/ingress.class|kubernetes.io/ingress.class>: "nginx"
annotation set both in
dex.ingress.annotations
and
ingress.annotations
. On the other hand, these annotations must not be set for helm chart v1.4.0, because this chart sets
ingressClassName
and it conflicts with these annotations. So I recommend to upgrade to chart 1.4.0 (if you're using 1.3.x) AND remove aforementioned annotations from customized values. Then, remove your Organization resource and create it again. It should help. Please let me know if the issue persists.