Can you try curl <http://airbyte-abctl-control-plane/api/public/v1/health>
?
it should return Successful operation
got theses
<head><title>404 Not Found</title></head>
<body>
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>```
from the airflow web-server and scheduler
hmm, did you use any options for abctl local install
?
I had to set the host to localhost and insecure cookies due to the lack of ssl rn
nginx is responding which is a good sign, at least there is a communication between containers
I was happy with that too
what do you get for docker exec -it airbyte-abctl-control-plane kubectl describe ingress ingress-abctl -n airbyte-abctl
on host?
I get something like this on my computer
Labels: <none>
Namespace: airbyte-abctl
Address: 10.96.247.91
Ingress Class: nginx
Default backend: <default>
Rules:
Host Path Backends
---- ---- --------
*
/ airbyte-abctl-airbyte-webapp-svc:http (10.244.0.16:8080)
Annotations: nginx.ingress.kubernetes.io/proxy-body-size: 200m
Events:
Type Reason Age From Message
---- ------ ---- ---- -------
Normal Sync 15m nginx-ingress-controller Scheduled for sync```
I think pretty much the same
Labels: <none>
Namespace: airbyte-abctl
Address: 10.96.249.151
Ingress Class: nginx
Default backend: <default>
Rules:
Host Path Backends
---- ---- --------
localhost
/ airbyte-abctl-airbyte-webapp-svc:http (10.244.0.12:8080)
host.docker.internal
/ airbyte-abctl-airbyte-webapp-svc:http (10.244.0.12:8080)
Annotations: <none>
Events: <none>```
maybe if I try the ip on host internal docker?
or set the airflow compose with that host internal docker?
it just froze doing a curl on the last ip
okay, I can see the difference – I have *
and you have localhost
and host.docker.internal
for Host
is there a way to change it?
curl <http://host.docker.internal:8000/api/public/v1/health>
works for you?
I get Successful operation
curl: (6) Could not resolve host: host.docker.internal
but maybe if I set the host.docker.internal on the airflow compose?
host.docker.internal: host-gateway```
well, the error changed at least
curl: (7) Failed to connect to host.docker.internal port 8000 after 0 ms: Couldn't connect to server