davibaldin opened a new issue, #647:
URL: https://github.com/apache/apisix-helm-chart/issues/647
Deploying a fresh instance from
**deploy/apisix/values.yml**
```yml
ingress-controller:
enabled: true
```
helm upgrade -i apisix apisix/apisix --create-namespace --namespace apisix
-f deploy/apisix/values.yml
Cause Pod apisix-ingress-controller waiting forever. Troubleshooting the
init container is trying to reach
**apisix-admin.ingress-apisix.svc.cluster.local** and it seems wrong. The
correct FQDN should be **apisix-admin.apisix.svc.cluster.local**
```yml
initContainers:
- name: wait-apisix-admin
image: busybox:1.28
command: ['sh', '-c', "until nc -z
apisix-admin.ingress-apisix.svc.cluster.local 9180 ; do echo waiting for
apisix-admin; sleep 2; done;"]
securityContext:
{}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]