Compare commits
7 Commits
a0492746d5
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
42b5e3ba59
|
|||
|
d5026ac748
|
|||
|
e140de574e
|
|||
|
e7692bc346
|
|||
|
ec15e9de3a
|
|||
| 1f0dd8ca03 | |||
|
62b5e558c2
|
@@ -24,5 +24,5 @@ appVersion: "1.0"
|
|||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: cloudnative-pg
|
- name: cloudnative-pg
|
||||||
version: 0.26.0
|
version: 0.26.1
|
||||||
repository: https://cloudnative-pg.github.io/charts
|
repository: https://cloudnative-pg.github.io/charts
|
||||||
@@ -59,4 +59,11 @@ spec:
|
|||||||
comment: netmaker
|
comment: netmaker
|
||||||
login: true
|
login: true
|
||||||
passwordSecret:
|
passwordSecret:
|
||||||
name: netmaker-auth
|
name: netmaker-auth
|
||||||
|
- name: pooler
|
||||||
|
ensure: present
|
||||||
|
comment: pooler
|
||||||
|
login: true
|
||||||
|
superuser: true
|
||||||
|
passwordSecret:
|
||||||
|
name: pgbouncer-auth-query
|
||||||
25
postgres/config/poolers/authquery.yaml
Normal file
25
postgres/config/poolers/authquery.yaml
Normal file
@@ -0,0 +1,25 @@
|
|||||||
|
apiVersion: external-secrets.io/v1
|
||||||
|
kind: ExternalSecret
|
||||||
|
metadata:
|
||||||
|
name: pgbouncer-auth-query
|
||||||
|
spec:
|
||||||
|
data:
|
||||||
|
- remoteRef:
|
||||||
|
conversionStrategy: Default
|
||||||
|
decodingStrategy: None
|
||||||
|
key: cloudnativepg
|
||||||
|
metadataPolicy: None
|
||||||
|
property: pgbouncer_pw
|
||||||
|
secretKey: password
|
||||||
|
refreshInterval: 1h
|
||||||
|
secretStoreRef:
|
||||||
|
kind: ClusterSecretStore
|
||||||
|
name: weyma-vault
|
||||||
|
target:
|
||||||
|
template:
|
||||||
|
data:
|
||||||
|
username: pooler
|
||||||
|
password: "{{ .password }}"
|
||||||
|
creationPolicy: Owner
|
||||||
|
deletionPolicy: Retain
|
||||||
|
name: pgbouncer-auth-query
|
||||||
17
postgres/config/poolers/pooler-weyma.yaml
Normal file
17
postgres/config/poolers/pooler-weyma.yaml
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
apiVersion: postgresql.cnpg.io/v1
|
||||||
|
kind: Pooler
|
||||||
|
metadata:
|
||||||
|
name: pooler-weyma-rw
|
||||||
|
spec:
|
||||||
|
cluster:
|
||||||
|
name: weyma-pgsql
|
||||||
|
instances: 3
|
||||||
|
type: rw
|
||||||
|
pgbouncer:
|
||||||
|
poolMode: session
|
||||||
|
authQuery: "SELECT usename, passwd FROM pg_shadow WHERE usename=$1"
|
||||||
|
authQuerySecret:
|
||||||
|
name: pgbouncer-auth-query
|
||||||
|
parameters:
|
||||||
|
max_client_conn: "10000"
|
||||||
|
default_pool_size: "100"
|
||||||
Reference in New Issue
Block a user