Skip to content

Commit

Permalink
fix(pg): typo postgresqlParameters (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Bouquillon authored Aug 29, 2023
1 parent 5e59d14 commit f94849e
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 8 deletions.
8 changes: 6 additions & 2 deletions packages/kontinuous/tests/__snapshots__/extends-ovh.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,9 @@ spec:
storageClass: csi-cinder-high-speed
minSyncReplicas: 0
maxSyncReplicas: 0
postgresql: {}
postgresql:
parameters:
timezone: Europe/Paris
monitoring:
enablePodMonitor: false
bootstrap:
Expand Down Expand Up @@ -659,7 +661,9 @@ spec:
storageClass: csi-cinder-high-speed
minSyncReplicas: 0
maxSyncReplicas: 0
postgresql: {}
postgresql:
parameters:
timezone: Europe/Paris
monitoring:
enablePodMonitor: false
bootstrap:
Expand Down
8 changes: 6 additions & 2 deletions packages/kontinuous/tests/__snapshots__/extends-ovh.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -772,7 +772,9 @@ spec:
compression: gzip
minSyncReplicas: 0
maxSyncReplicas: 0
postgresql: {}
postgresql:
parameters:
timezone: Europe/Paris
monitoring:
enablePodMonitor: true
bootstrap:
Expand Down Expand Up @@ -852,7 +854,9 @@ spec:
compression: gzip
minSyncReplicas: 0
maxSyncReplicas: 0
postgresql: {}
postgresql:
parameters:
timezone: Europe/Paris
monitoring:
enablePodMonitor: true
bootstrap:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,9 @@ spec:
compression: gzip
minSyncReplicas: 0
maxSyncReplicas: 0
postgresql: {}
postgresql:
parameters:
timezone: Europe/Paris
monitoring:
enablePodMonitor: false
bootstrap:
Expand Down
4 changes: 3 additions & 1 deletion packages/kontinuous/tests/__snapshots__/pg.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,9 @@ spec:
storageClass: managed-csi
minSyncReplicas: 0
maxSyncReplicas: 0
postgresql: {}
postgresql:
parameters:
timezone: Europe/Paris
monitoring:
enablePodMonitor: false
bootstrap:
Expand Down
4 changes: 3 additions & 1 deletion packages/kontinuous/tests/__snapshots__/pg.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,9 @@ spec:
compression: gzip
minSyncReplicas: 0
maxSyncReplicas: 0
postgresql: {}
postgresql:
parameters:
timezone: Europe/Paris
monitoring:
enablePodMonitor: true
bootstrap:
Expand Down
2 changes: 1 addition & 1 deletion plugins/fabrique/charts/pg/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ cnpg-cluster:
~tpl~dbOwner: "{{ .Values.global.pgUser }}"
~tpl~dbName: "{{ .Values.global.pgDatabase }}"
~tpl~instances: "{{ (or .Values.global.isProd .Values.global.isPreProd) | ternary `3` `1` }}"
postgresqlParameter:
postgresqlParameters:
timezone: "Europe/Paris"
extensions:
- postgis
Expand Down

0 comments on commit f94849e

Please sign in to comment.