feat: helm chart (wip)

This commit is contained in:
Nick
2019-05-03 23:45:54 -04:00
parent 0d2aa56b79
commit 2ba1004024
7 changed files with 153 additions and 0 deletions

41
dev/helm/values.yaml Normal file
View File

@@ -0,0 +1,41 @@
##
## Configuration values for the postgresql dependency.
## ref: https://github.com/kubernetes/charts/blob/master/stable/postgresql/README.md
postgresql:
##
## Use the PostgreSQL chart dependency.
## Set to false if bringing your own PostgreSQL.
enabled: true
##
## If you are bringing your own PostgreSQL, you should set postgresHost and
## also probably service.port, postgresUser, postgresPassword, and postgresDatabase
## postgresHost:
##
## PostgreSQL port
service:
port: 5432
## PostgreSQL User to create.
postgresUser: wiki
##
## PostgreSQL Password for the new user.
## If not set, a random 10 characters password will be used.
postgresPassword: wikijsrocks
##
## PostgreSQL Database to create.
postgresDatabase: wiki
##
## Persistent Volume Storage configuration.
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes
persistence:
##
## Enable PostgreSQL persistence using Persistent Volume Claims.
enabled: true
##
## Persistant class
# storageClass: classname
##
## Access mode:
accessMode: ReadWriteOnce
##
## Requested size:
size: 10Gi