88 lines
2.4 KiB
YAML
88 lines
2.4 KiB
YAML
# Default values for molgenis-vault.
|
|
# This is a YAML-formatted file.
|
|
# Declare variables to be passed into your templates.
|
|
|
|
# s3 configures s3 backup storage
|
|
s3:
|
|
# accessKey for the s3 storage account
|
|
accessKeyId: Q3AM3UQ867SPQQA43P2F
|
|
# secretAccessKey for the s3 storage account
|
|
secretAccessKey: zuf+tfteSlswRu7BJ86wekitnifILbZam1KYY3TG
|
|
# region
|
|
region: us-east-1
|
|
# endpoint for the s3 storage
|
|
endpoint: https://play.minio.io:9000
|
|
# forcePathStyle if set to true forces requests to use path style
|
|
# (host/bucket instead of bucket.host)
|
|
forcePathStyle: true
|
|
# bucket is the name of the bucket
|
|
bucket: vault
|
|
|
|
# backupjob describes the backup cronjob
|
|
backupJob:
|
|
# suspend suspends the backup job
|
|
suspend: false
|
|
# schedule gives the cron schedule for the backup job
|
|
schedule: "0 12 * * 1"
|
|
|
|
###
|
|
# All of the config variables related to setting up the etcd-operator
|
|
# If you want more information about the variables exposed, please visit:
|
|
# https://github.com/kubernetes/charts/tree/master/stable/etcd-operator#configuration
|
|
###
|
|
etcd-operator:
|
|
deployments:
|
|
etcdOperator: true
|
|
backupOperator: true
|
|
restoreOperator: true
|
|
serviceAccount:
|
|
etcdOperatorServiceAccount:
|
|
create: true
|
|
backupOperatorServiceAccount:
|
|
create: true
|
|
restoreOperatorServiceAccount:
|
|
create: true
|
|
etcdOperator:
|
|
image:
|
|
tag: v0.9.2
|
|
backupOperator:
|
|
image:
|
|
repository: fdlk/etcd-operator
|
|
tag: latest
|
|
restoreOperator:
|
|
image:
|
|
repository: fdlk/etcd-operator
|
|
tag: latest
|
|
|
|
ui:
|
|
name: "vault-ui"
|
|
replicaCount: 1
|
|
image:
|
|
repository: djenriquez/vault-ui
|
|
tag: latest
|
|
service:
|
|
name: vault-ui
|
|
type: ClusterIP
|
|
externalPort: 8000
|
|
internalPort: 8000
|
|
# nodePort: 32001
|
|
ingress:
|
|
enabled: true
|
|
# Used to create Ingress record (should used with service.type: ClusterIP).
|
|
host: vault.molgenis.org
|
|
|
|
resources: {}
|
|
# We usually recommend not to specify default resources and to leave this as a conscious
|
|
# choice for the user. This also increases chances charts run on environments with little
|
|
# resources, such as Minikube. If you do want to specify resources, uncomment the following
|
|
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
|
|
# limits:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
#requests:
|
|
# cpu: 100m
|
|
# memory: 128Mi
|
|
nodeSelector: {}
|
|
vault:
|
|
auth: GITHUB
|
|
url: https://vault.vault-operator:8200 |