我正在尝试使用下面的命令来使用podip卷曲到pod本身,因为目前我不希望kubelet请求我的pod进行健康检查。
livenessProbe:
exec:
command:
- curl
- $POD_IP:9990/admin/ping
initialDelaySeconds: 3
periodSeconds: 5
但是这里不能识别env变量$ POD_IP,
Could not resolve host: $POD_IP
如何配置它以便命令中的curl可以读取env var。
参考:https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.9/#execaction-v1-core
尝试以下:
command:
- bash
- -c
- curl $POD_IP:9990/admin/ping