This message was deleted.
s
This message was deleted.
p
Assuming the repo example is well up to date. The endpoint might not be correctly set here.
Can you switch to downward k8s API to get
HOST_IP:4317
instead? Set the following env for your app manifest:
Copy code
env:
  - name: HOST_IP
    valueFrom:
      fieldRef:
        fieldPath: status.hostIP
And followed by using
http://$(HOST_IP):4317
for your endpoint.
245 Views