Skip to content

Instantly share code, notes, and snippets.

@rafaeltuelho
Created August 8, 2024 22:08
Show Gist options
  • Save rafaeltuelho/24f3a2a50e89c2e7e22396385edad31d to your computer and use it in GitHub Desktop.
Save rafaeltuelho/24f3a2a50e89c2e7e22396385edad31d to your computer and use it in GitHub Desktop.
Deploys a Postgres DB instance using bitami/postgresql Helm Chart on Openshift 4.x
global:
postgresql:
auth:
postgresPassword: "secret"
username: "artifactory"
password: "artifactory"
database: "artifactory"
primary:
persistence:
enabled: false
initdb:
user: "postgres"
password: "secret"
scripts:
initdb.sql: |-
CREATE USER artifactory WITH PASSWORD 'artifactory';
CREATE DATABASE artifactory WITH OWNER=artifactory ENCODING='UTF8';
GRANT ALL PRIVILEGES ON DATABASE artifactory TO artifactory;
# data-load.sh: |-
# #!/bin/bash
# echo "creating db"
# psql -U postgres -P 'P0stgr3sql' -c postgres "CREATE USER artifactory WITH PASSWORD 'artifactory'";
# psql -U postgres -P 'P0stgr3sql' -c postgres "CREATE DATABASE artifactory WITH OWNER=artifactory ENCODING='UTF8'";
# psql -U postgres -P 'P0stgr3sql' -c postgres "GRANT ALL PRIVILEGES ON DATABASE artifactory TO artifactory";
# echo "Done!!!"
volumePermissions:
enabled: false
securityContext:
runAsUser: "auto"
securityContext:
enabled: false
shmVolume:
chmod:
enabled: false
containerSecurityContext:
enabled: false
@rafaeltuelho
Copy link
Author

steps:

helm repo add bitnami https://charts.bitnami.com/bitnami
helm repo update
helm install postgres bitnami/postgresql --namespace artifactory -f bitnami-postgresql-values.yaml
#or
#helm upgrade --install -name postgres bitnami/postgresql --namespace artifactory -f bitnami-postgresql-values.yaml

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment