In the below yaml syntax:
readinessProbe:
httpGet:
path: /index.html
port: 80
initialDelaySeconds: 3
timeoutSeconds: 3
periodSeconds: 10
failureThreshold: 3
Readiness probe is used during initial deployments of Pod.
For rolling out new version of application, using rolling deployment strategy, Is readiness probe used for rolling deployment?
path
&port
field allows to input url & port number of a specific service, but not dependent service. how to verify, if dependent service is also ready?