We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
livenessProbe: exec: command: - sh - -c - redis-cli -h $(hostname) ping
这个健康检查在pod内不管设不设密码均返回0; 修复方式为 redis-cli -h $(hostname) -a REDIS_PASSWORD ping | grep -i pong 我查了下该配置并不是在configmap中是在 ./pkg/resources/statefulsets/statefulset.go: probeArg := "redis-cli -h $(hostname) ping" 能否修改下这段代码然后修复这个bug。 感谢
The text was updated successfully, but these errors were encountered:
No branches or pull requests
这个健康检查在pod内不管设不设密码均返回0;
修复方式为
redis-cli -h $(hostname) -a REDIS_PASSWORD ping | grep -i pong
我查了下该配置并不是在configmap中是在
./pkg/resources/statefulsets/statefulset.go: probeArg := "redis-cli -h $(hostname) ping"
能否修改下这段代码然后修复这个bug。
感谢
The text was updated successfully, but these errors were encountered: