Last active
August 9, 2022 12:52
-
-
Save jxsl13/70de22efeebe3bc489642f2e76de79f8 to your computer and use it in GitHub Desktop.
Example helm chart values for bitnami/postgresql (Integration tests)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
global: | |
postgresql: | |
auth: | |
postgresPassword: "postgres" | |
username: "user" | |
password: "password" | |
database: "database" | |
image: | |
registry: docker.io | |
repository: bitnami/postgresql | |
tag: 14.4.0-debian-11-r4 | |
pullSecrets: [] | |
resources: | |
limits: | |
memory: 256Mi | |
cpu: 250m | |
requests: | |
memory: 50Mi | |
cpu: 50m | |
primary: | |
persistence: | |
enabled: false | |
initdb: | |
scripts: | |
create_keycloak_db.sql: |- | |
create database "keycloak"; | |
grant all privileges on database "keycloak" to "user"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment