I am trying to run the docker based microservices (without k8s). The proxy is exiting with code 1 as soon as I start things up using go-run up.
The output of docker logs proxy is as follows:
{"message":"Unable to find certificate /etc/cert/cert.pem"}
{"message":"Unable to find certificate /etc/cert/cert.pem"}
{"message":"Unable to find certificate /etc/cert/cert.pem"}
I guess because of this my go-run wait waits indefinitely.
I believe this has something to do with the environment variable ETCDCTL_ENDPOINT, but would like some help from someone who knows the end to end pic here.
I am trying to run the docker based microservices (without k8s). The proxy is exiting with code 1 as soon as I start things up using
go-run up
.The output of docker logs proxy is as follows:
I guess because of this my go-run wait waits indefinitely.
I believe this has something to do with the environment variable
ETCDCTL_ENDPOINT
, but would like some help from someone who knows the end to end pic here.