Skip to content

Commit 6cd4f2b

Browse files
committed
fix ldap and coturn charts
1 parent b1534fe commit 6cd4f2b

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

charts/coturn/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
name: coturn
3-
version: 0.0.4
3+
version: 0.0.5

charts/coturn/templates/pgbouncer-deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ spec:
1717
spec:
1818
containers:
1919
- name: pgbouncer
20-
mage: {{ .Values.pgbouncer.image.repository }}:{{ .Values.pgbouncer.image.tag }}
20+
image: {{ .Values.pgbouncer.image.repository }}:{{ .Values.pgbouncer.image.tag }}
2121
imagePullPolicy: {{ .Values.pgbouncer.image.pullPolicy }}
2222
resources:
2323
{{ toYaml .Values.pgbouncer.resources | nindent 10 }}

charts/coturn/templates/service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@ spec:
1616
port: 5349
1717
targetPort: 5349
1818
type: LoadBalancer
19+
{{- if .Values.loadBalancerIP }}
20+
loadBalancerIP: {{ .Values.loadBalancerIP }}
21+
{{- end }}

charts/coturn/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,5 @@ pgbouncer:
3434
tolerations: []
3535
affinity: {}
3636
# TODO: add postgres section and move pgbouncer to separate chart
37+
38+
loadBalancerIP: ''

charts/ldap/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
---
22
name: ldap
3-
version: 0.0.4
3+
version: 0.0.5

charts/ldap/templates/configmap.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@ data:
1515
mode tcp
1616
balance roundrobin
1717
{{- if .Values.servers }}
18-
{{ .Values.servers | nindent 6 }}
18+
{{- range .Values.servers }}
19+
{{ . }}
20+
{{- end }}
1921
{{- end }}

0 commit comments

Comments
 (0)