Skip to content

Instantly share code, notes, and snippets.

@jxsl13
Last active August 9, 2022 12:52
Show Gist options
  • Save jxsl13/70de22efeebe3bc489642f2e76de79f8 to your computer and use it in GitHub Desktop.
Save jxsl13/70de22efeebe3bc489642f2e76de79f8 to your computer and use it in GitHub Desktop.
Example helm chart values for bitnami/postgresql (Integration tests)
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