forked from deliveryhero/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
executable file
·91 lines (76 loc) · 1.63 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Default values for cachet.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
image:
repository: cachethq/docker
tag: "2.3.15"
pullPolicy: Always
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
service:
type: ClusterIP
port: 80
ingress:
enabled: false
annotations: {}
host: chart-example.local
tls: []
path: /
# ingress.ingressClassName -- Set ingressClass for Ingress when needed
ingressClassName: ""
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
podSecurityContext: []
# seccompProfile: RuntimeDefault
securityContext: []
# allowPrivilegeEscalation: false
# capabilities:
# drop:
# - ALL
# readOnlyRootFilesystem: false
# runAsUser: 12345
# creates cachet database via posgres-controller
database:
host: cachet-db.example.com
port: 5432
name: cachet
username: cachet
password: ""
driver: pssql
env:
public:
# Application environments
APP_DEBUG: false
APP_LOG: errorlog
DB_DRIVER: pgsql
DOCKER: true
CACHE_DRIVER: database
SESSION_DRIVER: database
QUEUE_DRIVER: database
CACHET_EMOJI: false
CACHET_BEACON: false
# Email find them here https://docs.cachethq.io/docs/configuring-mail
MAIL_DRIVER: smtp
MAIL_HOST: ""
MAIL_ADDRESS: ""
MAIL_PORT: 25
MAIL_NAME: ""
MAIL_ENCRYPTION: tls
# Update all with your own values
private:
APP_KEY: ""
MAIL_USERNAME: ""
MAIL_PASSWORD: ""
test:
enabled: true
extraLabels: {}