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
If k8s_ingress_nginx_haproxy_conf is set to true, then the haproxy.yaml produced is broken, as follows:
k8s_ingress_nginx_haproxy_conf
haproxy.yaml
containers: - image: haproxy:2.8 name: haproxy livenessProbe: failureThreshold: 8 httpGet: host: localhost path: /healthz port: 8443 scheme: HTTPS securityContext: capabilities: add: - NET_BIND_SERVICE runAsUser: 0 volumeMounts: - mountPath: /usr/local/etc/haproxy/haproxy.cfg name: haproxyconf readOnly: true
This must be fixed.
The text was updated successfully, but these errors were encountered:
Fix the haproxy pod yaml format
3d5ada5
This fixes the structure of the yaml when k8s_ingress_nginx_haproxy_conf is set to true. Fixes: #3
Successfully merging a pull request may close this issue.
If
k8s_ingress_nginx_haproxy_conf
is set to true, then thehaproxy.yaml
produced is broken, as follows:This must be fixed.
The text was updated successfully, but these errors were encountered: