Skip to content
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: 6 additions & 0 deletions charts/ace/templates/db/db-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,10 @@ stringData:
max_wal_senders=50
max_replication_slots=50
# shared_buffers=258MB
# Required for PostgreSQL 17's failover logical replication slot sync
hot_standby_feedback=on
sync_replication_slots=on
{{- with .Values.pgoutbox.synchronizedStandbySlots }}
synchronized_standby_slots='{{ . }}'
{{- end }}
{{- end }}
6 changes: 6 additions & 0 deletions charts/ace/templates/db/db.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,12 @@ spec:
version: "{{ .Values.settings.db.version }}"
replicas: 3
storageType: Durable
{{- if .Values.pgoutbox.enabled }}
# Required for PostgreSQL 17's failover logical replication slot sync
replication:
walLimitPolicy: ReplicationSlot
maxSlotWALKeepSize: -1
{{- end }}
storage:
storageClassName: {{ .Values.global.infra.storageClass.name }}
accessModes:
Expand Down
1 change: 1 addition & 0 deletions charts/service-gateway-presets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ The following table lists the configurable parameters of the `service-gateway-pr
| envoy.provisionerType | | <code>Deployment # DaemonSet</code> |
| envoy.image | | <code>ghcr.io/voyagermesh/envoy</code> |
| envoy.tag | | <code>"v1.37.2-ac"</code> |
| envoy.resources | | <code>{}</code> |
| envoy.service.portRange | Default listener portmanager range to use for gateway exposure | <code>"10000-12767"</code> |
| envoy.service.nodeportRange | Default node portmanager range to use for gateway exposure | <code>"30000-32767"</code> |
| envoy.service.type | | <code>LoadBalancer # ClusterIP, LoadBalancer, NodePort</code> |
Expand Down
1 change: 1 addition & 0 deletions charts/service-gateway-presets/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ envoy:
provisionerType: Deployment # DaemonSet
image: ghcr.io/voyagermesh/envoy
tag: "v1.37.2-ac"
resources: {}
# replicas only applies when provisionerType is Deployment
# replicas: 2
# resources:
Expand Down
1 change: 1 addition & 0 deletions charts/service-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ The following table lists the configurable parameters of the `service-gateway` c
| envoy.provisionerType | | <code>Deployment # DaemonSet</code> |
| envoy.image | | <code>ghcr.io/voyagermesh/envoy</code> |
| envoy.tag | | <code>"v1.37.2-ac"</code> |
| envoy.resources | | <code>{}</code> |
| envoy.service.portRange | Default listener portmanager range to use for gateway exposure | <code>"10000-12767"</code> |
| envoy.service.nodeportRange | Default node portmanager range to use for gateway exposure | <code>"30000-32767"</code> |
| envoy.service.seedBackendPort | | <code>8080</code> |
Expand Down
1 change: 1 addition & 0 deletions charts/service-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ envoy:
provisionerType: Deployment # DaemonSet
image: ghcr.io/voyagermesh/envoy
tag: "v1.37.2-ac"
resources: {}
# replicas only applies when provisionerType is Deployment
# replicas: 2
# resources:
Expand Down
Loading