forked from coo-ops.space/helm-charts
97 lines
1.8 KiB
YAML
97 lines
1.8 KiB
YAML
# Default values for homebox.
|
|
# This is a YAML-formatted file.
|
|
|
|
# Namespace to use.
|
|
namespace: romm
|
|
|
|
# Replica's to Deploy.
|
|
replicaCount: 1
|
|
|
|
# Image to use.
|
|
www:
|
|
image: zurdi15/romm
|
|
pullPolicy: Always
|
|
tag: "1.8.4"
|
|
|
|
# Overrides.
|
|
imagePullSecrets: []
|
|
nameOverride: ""
|
|
fullnameOverride: ""
|
|
|
|
romm:
|
|
env:
|
|
CLIENT_ID
|
|
CLIENT_SECRET
|
|
STEAMGRIDDB_API_KEY
|
|
|
|
ingress:
|
|
enabled: true
|
|
className: "nginx"
|
|
tls:
|
|
- secretName: romm-domain-tls
|
|
hosts:
|
|
- romm.example.com
|
|
hosts:
|
|
- host: romm.example.com
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
|
|
persistence:
|
|
enabled: true
|
|
existingClaim:
|
|
size: 10Gi
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
labels: {}
|
|
annotations: {}
|
|
storageClass:
|
|
subPath:
|
|
|
|
extraVolumes: []
|
|
extraContainerVolumeMounts: []
|
|
|
|
|
|
## MariaDB chart configuration
|
|
## https://github.com/bitnami/charts/blob/main/bitnami/mariadb/values.yaml
|
|
##
|
|
mariadb:
|
|
enabled: true
|
|
primary:
|
|
persistence:
|
|
enabled: true
|
|
storageClass: ""
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
size: 8Gi
|
|
## Use an existing PVC
|
|
##
|
|
existingClaim: ""
|
|
auth:
|
|
username: "dmarc"
|
|
password: "password"
|
|
database: dmarc
|
|
|
|
|
|
## External database configuration
|
|
##
|
|
externalDatabase:
|
|
## @param externalDatabase.existingSecret Name of the database existing Secret Object
|
|
## NOTE: When it's set, the `externalDatabase.password` parameter is ignored
|
|
##
|
|
existingSecret: ""
|
|
## @param externalDatabase.host Host of the existing database
|
|
##
|
|
host: ""
|
|
## @param externalDatabase.port Port of the existing database
|
|
##
|
|
port: 3306
|
|
## @param externalDatabase.user Existing username in the external db
|
|
##
|
|
user: dmarc
|
|
## @param externalDatabase.password Password for the above username
|
|
##
|
|
password: ""
|
|
## @param externalDatabase.database Name of the existing database
|
|
##
|
|
database: dmarc |