33 lines
779 B
YAML
33 lines
779 B
YAML
|
|
domain: "time.northernlighthouseinteractive.com"
|
||
|
|
|
||
|
|
image:
|
||
|
|
repository: solidtime/solidtime
|
||
|
|
pullPolicy: IfNotPresent
|
||
|
|
tag: "latest" # Pin this to a specific version in production!
|
||
|
|
|
||
|
|
# Generates the Laravel App Key. Change this!
|
||
|
|
# Run `php artisan key:generate --show` locally to get one.
|
||
|
|
appKey: "base64:YOUR_GENERATED_KEY_HERE"
|
||
|
|
|
||
|
|
ingress:
|
||
|
|
enabled: true
|
||
|
|
className: "nginx"
|
||
|
|
annotations:
|
||
|
|
cert-manager.io/cluster-issuer: "letsencrypt-prod"
|
||
|
|
hosts:
|
||
|
|
- host: time.northernlighthouseinteractive.com
|
||
|
|
paths:
|
||
|
|
- path: /
|
||
|
|
pathType: Prefix
|
||
|
|
|
||
|
|
# Database Dependency Configuration
|
||
|
|
postgresql:
|
||
|
|
enabled: true
|
||
|
|
auth:
|
||
|
|
username: solidtime
|
||
|
|
password: securepassword
|
||
|
|
database: solidtime
|
||
|
|
primary:
|
||
|
|
persistence:
|
||
|
|
enabled: true
|
||
|
|
size: 10Gi
|