i am running 4 services inside a kubernetes pod and all are running on same port but the health check points are different for every service. I want to add multiple path in liveness/readiness probe. Currently i am using below configuration to check the health of one service. I want to add more path. How can i do that? I have tried with binary operator("/service1/health && /service2/health && /service3/health") but that was not worked for me.
livenessProbe:
httpGet:
path: /service1/health
port: 8080
httpHeaders:
- name: Custom-Header
value: iamalive
initialDelaySeconds: 60
failureThreshold: 5
periodSeconds: 60
timeoutSeconds: 120