2

I am trying to install ambassador over kubernetes.

I am getting the ambassdor pods status as CrashLoopBackOff http://paste.openstack.org/show/658099/

steps followed for installation:

https://www.getambassador.io/user-guide/getting-started 1) kubectl apply -f ambassador-service.yaml 2) kubectl apply -f https://getambassador.io/yaml/ambassador/ambassador-rbac.yaml

ERROR says:

Readiness probe failed: Get http://10.241.96.13:8877/ambassador/v0/check_ready: dial tcp 10.241.96.13:8877: getsockopt: connection refused

please help.

1 Answer 1

3

The Ambassador readiness probe is failing, causing Kubernetes to restart the pod, and putting you into a crash loop.

The first thing to do is bump up the initialDelaySeconds and periodSeconds in your readiness/liveness check (in your deployment YAML) to, say, 60 seconds.

Then, take a look at the Ambassador logs (kubectl logs <ambassador-pod-name>) to see if you can see any anomalous issues.

1
  • To see if... ?? Commented Feb 23, 2018 at 19:11

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.