:wave: Hello, I have some issues when I try to dep...
# troubleshoot
s
👋 Hello, I have some issues when I try to deploy datahub with helm (last release no custom charts) in kubernetes (EKS). I use OpenSearch & RDS but I prefer use kafka pod for now. datahub-gms doesn't running:
Copy code
Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: localhost/127.0.0.1:8080
Caused by: java.net.ConnectException: Connection refused
Readiness/Liveness are always KO
Copy code
Warning  Unhealthy  4m31s (x12 over 8m1s)  kubelet            Readiness probe failed: Get "<http://10.18.64.5:8080/health>": dial tcp 10.18.64.5:8080: connect: connection refused
  Normal   Killing    4m31s                  kubelet            Container datahub-gms failed liveness probe, will be restarted
  Warning  Unhealthy  3m1s (x9 over 8m1s)    kubelet            Liveness probe failed: Get "<http://10.18.64.5:8080/health>": dial tcp 10.18.64.5:8080: connect: connec
and nocode-migration :
Copy code
ERROR: Cannot connect to GMSat <http://host> datahub-datahub-gms port 8080. Make sure GMS is on the latest version and is running at that host before starting the migration.
NAME READY STATUS RESTARTS AGE
datahub-datahub-frontend-d7cfdfb96-sxd59 1/1 Running 0 4m58s
datahub-datahub-gms-bb6d47fcf-7g7tc 0/1 Running 1 (27s ago) 4m58s
datahub-elasticsearch-setup-job-bnnvr 0/1 Completed 0 6m20s
datahub-kafka-setup-job-fcvqg 0/1 Completed 0 6m14s
datahub-nocode-migration-job-56rrb 0/1 Error 0 72s
datahub-nocode-migration-job-8vljj 0/1 Error 0 3m55s
datahub-nocode-migration-job-h975w 0/1 Error 0 2m49s
datahub-nocode-migration-job-zkclz 0/1 Error 0 4m55s
datahub-postgresql-setup-job-4kl22 0/1 Completed 0 5m2s
prerequisites-cp-schema-registry-cf79bfccf-f6mpx 2/2 Running 0 7m42s
prerequisites-kafka-0 1/1 Running 0 7m42s
prerequisites-zookeeper-0 1/1 Running 0 7m42s
I tried to delete pod, redploy in another namespace, redeploy with full pod and no AWS Services, I have always the same issue
✅ 1
I finally found, I modified readiness and liveness for datahub-gms
livenessProbe:
initialDelaySeconds: 120
readinessProbe:
initialDelaySeconds: 120
g
Hi @salmon-garden-47148 Does it solve your issue ?
s
Yes, I made some helm upgrade since this change, I have no more problems