Last week I faced an issue with JFrog Artifactory, it was unreachable via UI and via CLI even if all pods/statefulset were ready .
Looking at all logs, I've found that Artifactory pod reported Connector 'http-nio-8081' is not ready every 15 seconds with an increasing fail count (over 400) .
The workaround was to rollout restart the statefulset, but it should be better to add a check for that on the artifactory's liveness probe, so at least is clear which pod is failing and kubernetes can restart that pod.
Thanks.
Last week I faced an issue with JFrog Artifactory, it was unreachable via UI and via CLI even if all pods/statefulset were ready .
Looking at all logs, I've found that Artifactory pod reported
Connector 'http-nio-8081' is not readyevery 15 seconds with an increasing fail count (over 400) .The workaround was to rollout restart the statefulset, but it should be better to add a check for that on the artifactory's liveness probe, so at least is clear which pod is failing and kubernetes can restart that pod.
Thanks.