Skip to content
Open
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
2 changes: 1 addition & 1 deletion charts/pgcat/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ maintainers:
- name: PostgresML
email: [email protected]
appVersion: "1.2.0"
version: 0.2.5
version: 0.2.6
6 changes: 3 additions & 3 deletions charts/pgcat/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ stringData:
load_balancing_mode = {{ default "random" $pool.load_balancing_mode | quote }}
default_role = {{ default "any" $pool.default_role | quote }}
prepared_statements_cache_size = {{ default 500 $pool.prepared_statements_cache_size }}
query_parser_enabled = {{ default true $pool.query_parser_enabled }}
query_parser_read_write_splitting = {{ default true $pool.query_parser_read_write_splitting }}
primary_reads_enabled = {{ default true $pool.primary_reads_enabled }}
query_parser_enabled = {{ ne $pool.query_parser_enabled false }}
query_parser_read_write_splitting = {{ ne $pool.query_parser_read_write_splitting false }}
primary_reads_enabled = {{ ne $pool.primary_reads_enabled false }}
sharding_function = {{ default "pg_bigint_hash" $pool.sharding_function | quote }}

{{- range $index, $user := $pool.users }}
Expand Down
Loading