Created
August 8, 2024 22:08
-
-
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
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: "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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
steps: