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
When modifying the portName in the InfluxDB Helm chart, the liveness and readiness probes stop functioning correctly. This is because the probes are hardcoded to use the port name "http" in the StatefulSet template, causing errors when the port name is changed.
The current values.yaml configuration for the service is:
Description
When modifying the portName in the InfluxDB Helm chart, the liveness and readiness probes stop functioning correctly. This is because the probes are hardcoded to use the port name
"http"
in the StatefulSet template, causing errors when the port name is changed.The current values.yaml configuration for the service is:
Current Behavior
The liveness and readiness probes are defined as follows in the StatefulSet template:
The
port: http
line is hardcoded, which prevents users from customizing the port name.When the port name is changed in the values.yaml file, the following errors occur:
Expected Behavior
The port name in the probes should be configurable, allowing users to change it without breaking the liveness and readiness checks.
Proposed Solution
Update the StatefulSet template to use a variable for the port name:
The text was updated successfully, but these errors were encountered: