-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvalues.yaml.sample
112 lines (111 loc) · 2.36 KB
/
values.yaml.sample
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
env:
singleUserMode: "true"
registration: {}
# emailDomainBlacklist: "example1.com|example2.com"
# emailDomainWhitelist: "example1.com|example2.com"
defaultLanguage: "ja"
smtp:
server: "YOUR_SMTP_SERVER"
port: "587"
login: "YOUR_LOGIN_ACCOUNT"
address: "YOUR_MAIL_ADDRESS"
opensslVerifyMode: "none"
domain: "YOUR_SERVER_DOMAIN"
assets: {}
# paperclipRootPath: "/var/lib/mastodon/public-system"
# paperclipRootUrl: "system"
# cdnHost: "assets.example.com"
s3: {}
# enabled: "true"
# bucket: "dummy"
# awsAccessKeyId: "dummy"
# awsSecretAccessKey: "dummy"
# region: "dummy"
# protocol: "http"
# hostname: "192.168.1.123:9000"
# cloudfrontHost: "dummy"
# streamingApiBaseUrl: "dummy"
web:
name: web
image: gargron/mastodon
imageTag: v1.2
imagePullPolicy: IfNotPresent
servicePort: 80
containerPort: 3000
ingress:
host: SET_YOUR_DOMAIN
persistentVolume:
system:
accessMode: ReadWriteMany
size: 8Gi
assets:
accessMode: ReadWriteMany
size: 8Gi
resources:
requests:
memory: 256Mi
cpu: 100m
streaming:
name: streaming
image: gargron/mastodon
imageTag: v1.2
imagePullPolicy: IfNotPresent
servicePort: 4000
containerPort: 4000
resources:
requests:
memory: 256Mi
cpu: 100m
sidekiq:
name: sidekiq
image: gargron/mastodon
imageTag: v1.2
imagePullPolicy: IfNotPresent
resources:
requests:
memory: 256Mi
cpu: 100m
redis:
name: redis
image: redis
imageTag: 3-alpine
imagePullPolicy: IfNotPresent
servicePort: 6379
containerPort: 6379
# You need to create PV beforehead.
persistentVolume:
accessMode: ReadWriteMany
size: 8Gi
resources:
requests:
memory: 256Mi
cpu: 100m
postgres:
name: postgres
image: postgres
imageTag: "9.6.2"
imagePullPolicy: IfNotPresent
containerPort: 5432
servicePort: 5432
env:
postgres_user: "postgres"
pguser: "postgres"
postgres_db: ""
pgdata: "/var/lib/postgresql/data/pgdata"
# You need to create PV beforehead.
persistentVolume:
accessMode: ReadWriteMany
size: 8Gi
resources:
requests:
memory: 256Mi
cpu: 100m
metrics:
enabled: true
image: "wrouesnel/postgres_exporter"
imageTag: "v0.1.1"
imagePullPolicy: IfNotPresent
resources:
requests:
memory: 256Mi
cpu: 100m