ch-gr opened a new issue, #986: URL: https://github.com/apache/apisix-helm-chart/issues/986
The port for the healthcheck probes can be configured with via .Values.config.probeAddr It is used in [templates/configmap.yaml](https://github.com/apache/apisix-helm-chart/blob/master/charts/apisix-ingress-controller/templates/configmap.yaml): ```yaml probe_addr: {{ .Values.config.probeAddr | default ":8081" }} ``` However in [templates/deployment.yaml](https://github.com/apache/apisix-helm-chart/blob/master/charts/apisix-ingress-controller/templates/deployment.yaml) this value is hardcoded: ```yaml livenessProbe: httpGet: path: /healthz port: 8081 initialDelaySeconds: 15 periodSeconds: 20 ``` ```yaml readinessProbe: httpGet: path: /readyz port: 8081 initialDelaySeconds: 5 periodSeconds: 10 ``` They should use the same templating so the ports match and the probes can succeed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
