Skip to content
New issue

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

Remove hardcode from configmap template for haproxy chart. #233

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions haproxy/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ apiVersion: v2
name: haproxy
description: A Helm chart for HAProxy on Kubernetes
type: application
version: 1.21.0
version: 1.21.1
appVersion: 2.9.5
kubeVersion: ">=1.17.0-0"
keywords:
Expand All @@ -31,6 +31,4 @@ maintainers:
engine: gotpl
annotations:
artifacthub.io/changes: |
- Update base image to HAProxy 2.9.5
- Add internalTrafficPolicy property for service (#218)
- Update podAnnotations rendering for better flexibility (#224)
- Remove hardcode from configmap template for haproxy chart (#233)
2 changes: 1 addition & 1 deletion haproxy/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ metadata:
labels:
{{- include "haproxy.labels" . | nindent 4 }}
data:
haproxy.cfg: |
{{ .Values.configMount.subPath }}: |
{{ tpl .Values.config . | nindent 4 }}
{{- end }}

Expand Down