You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this a BUG REPORT or FEATURE REQUEST? (choose one): Feature Request
Version of Helm and Kubernetes: 3.10.1/1.24
Which chart: artifactory
Which product license (Enterprise/Pro/oss): Enterprise
I was wondering why readiness probes are only added to the Artifactory stateful set when the Kubernetes version is <1.20.0? Based on the changelog this was an intentional change.
I'm deploying onto K8s 1.24 and have had to patch in a readiness probe so that I can use minReadySeconds to prevent the pod being sent requests a couple of seconds before it's actually ready to handle them. This is not ideal as I'm having to duplicate the config for the check, which could break in a future version.
If there is a valid reason to have this disabled for >1.20.0, could it be implemented instead by setting the default value of enabled for the readiness probe in values.yaml based on the K8s version, so that people could more easily override it?
The text was updated successfully, but these errors were encountered:
@critchtionary Thanks for reporting ! startupProbe is applicable for k8s versions >= 1.20.0 unless you enable featureflags in K8s for lower versions , Hence, readinessProbe.initialDelaySeconds is set to zero for >=1.20.0.
We have had big issues with this.
Readiness probes are basically not present and since artifactory is sometimes stalling and not answering on some pods the service keep sending requests to stalling pods.
The only solution is to remove the version requirement.
Same experience as @bramaq
Would also recommend going for an official fix.
Is this a request for help?: No
Is this a BUG REPORT or FEATURE REQUEST? (choose one): Feature Request
Version of Helm and Kubernetes: 3.10.1/1.24
Which chart: artifactory
Which product license (Enterprise/Pro/oss): Enterprise
I was wondering why readiness probes are only added to the Artifactory stateful set when the Kubernetes version is <1.20.0? Based on the changelog this was an intentional change.
I'm deploying onto K8s 1.24 and have had to patch in a readiness probe so that I can use
minReadySeconds
to prevent the pod being sent requests a couple of seconds before it's actually ready to handle them. This is not ideal as I'm having to duplicate the config for the check, which could break in a future version.If there is a valid reason to have this disabled for >1.20.0, could it be implemented instead by setting the default value of
enabled
for the readiness probe invalues.yaml
based on the K8s version, so that people could more easily override it?The text was updated successfully, but these errors were encountered: