Skip to content

Commit 96cc9a6

Browse files
committed
fix(postgresql-cluster): service type nil
1 parent 8ee9c87 commit 96cc9a6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

addons/postgresql-cluster/15/chart/postgresql-cluster/templates/svc-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
cluster-name: {{ template "patroni.fullname" . }}
1313
role: master
1414
spec:
15-
type: {{ .Value.service.type }}
15+
type: {{ .Values.service.type }}
1616
selector:
1717
application: {{ template "patroni.fullname" . }}
1818
cluster-name: {{ template "patroni.fullname" . }}

addons/postgresql-cluster/15/chart/postgresql-cluster/templates/svc-relp.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ metadata:
1212
cluster-name: {{ template "patroni.fullname" . }}
1313
role: replica
1414
spec:
15-
type: {{ .Value.service.type }}
15+
type: {{ .Values.service.type }}
1616
selector:
1717
application: {{ template "patroni.fullname" . }}
1818
cluster-name: {{ template "patroni.fullname" . }}

addons/postgresql-cluster/15/chart/postgresql-cluster/templates/svc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ metadata:
1111
heritage: {{ .Release.Service }}
1212
cluster-name: {{ template "patroni.fullname" . }}
1313
spec:
14-
type: {{ .Value.service.type }}
14+
type: {{ .Values.service.type }}
1515
ports:
1616
- port: 5432
1717
targetPort: 5432

0 commit comments

Comments
 (0)