-
Notifications
You must be signed in to change notification settings - Fork 163
/
Copy pathvalues.example.yaml
154 lines (142 loc) · 3.37 KB
/
values.example.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
secret:
jwt:
anonKey: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyAgCiAgICAicm9sZSI6ICJhbm9uIiwKICAgICJpc3MiOiAic3VwYWJhc2UtZGVtbyIsCiAgICAiaWF0IjogMTY0MTc2OTIwMCwKICAgICJleHAiOiAxNzk5NTM1NjAwCn0.dc_X5iR_VP_qT0zsiyj_I_OZ2T9FtRU2BBNWN8Bu4GE
serviceKey: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyAgCiAgICAicm9sZSI6ICJzZXJ2aWNlX3JvbGUiLAogICAgImlzcyI6ICJzdXBhYmFzZS1kZW1vIiwKICAgICJpYXQiOiAxNjQxNzY5MjAwLAogICAgImV4cCI6IDE3OTk1MzU2MDAKfQ.DaYlNEoUrrEn2Ig7tqibS-PHK5vgusbcbo7X36XVt4Q
secret: your-super-secret-jwt-token-with-at-least-32-characters-long
smtp:
username: your-mail@example.com
password: example123456
dashboard:
username: supabase
password: this_password_is_insecure_and_should_be_updated
db:
username: postgres
password: example123456
database: postgres
analytics:
apiKey: your-super-secret-and-long-logflare-key
db:
enabled: true
image:
tag: 15.1.0.147
livenessProbe:
exec:
command:
- pg_isready
- -U
- postgres
initialDelaySeconds: 3
persistence:
enabled: false
studio:
image:
tag: 20240326-5e5586d
environment:
STUDIO_DEFAULT_ORGANIZATION: "My Organization"
STUDIO_DEFAULT_PROJECT: "My Project"
SUPABASE_PUBLIC_URL: http://example.com/
NEXT_PUBLIC_ENABLE_LOGS: "true"
livenessProbe:
httpGet:
path: /api/profile
port: 3000
initialDelaySeconds: 3
auth:
image:
tag: v2.143.0
environment:
API_EXTERNAL_URL: http://example.com
GOTRUE_SITE_URL: http://example.com
GOTRUE_EXTERNAL_EMAIL_ENABLED: "true"
GOTRUE_MAILER_AUTOCONFIRM: "true"
GOTRUE_SMTP_ADMIN_EMAIL: "your-mail@example.com"
GOTRUE_SMTP_HOST: "smtp.example.com"
GOTRUE_SMTP_PORT: "587"
GOTRUE_SMTP_SENDER_NAME: "your-mail@example.com"
rest:
image:
tag: v12.0.1
realtime:
image:
tag: v2.27.5
livenessProbe:
httpGet:
path: /
port: 4000
initialDelaySeconds: 3
meta:
image:
tag: v0.80.0
storage:
image:
tag: v0.46.4
livenessProbe:
httpGet:
path: /status
port: 5000
initialDelaySeconds: 3
persistence:
enabled: false
imgproxy:
image:
tag: v3.8.0
environment:
IMGPROXY_ENABLE_WEBP_DETECTION: "true"
livenessProbe:
exec:
command:
- imgproxy
- health
initialDelaySeconds: 3
persistence:
enabled: false
kong:
image:
repository: kong
tag: 2.8.1
environment:
KONG_DECLARATIVE_CONFIG: /usr/local/kong/kong.yml
KONG_LOG_LEVEL: info
ingress:
enabled: true
className: "nginx"
annotations:
nginx.ingress.kubernetes.io/rewrite-target: /
tls: []
# - secretName: example-ingress-tls
# hosts:
# - example.com
hosts:
- host: example.com
paths:
- path: /
pathType: Prefix
analytics:
image:
tag: 1.4.0
livenessProbe:
httpGet:
path: /health
port: 4000
initialDelaySeconds: 3
vector:
image:
tag: 0.34.0-alpine
livenessProbe:
httpGet:
path: /health
port: 9001
initialDelaySeconds: 3
## Vector requires logs from the control plane to function.
## This is normally stored in /var/log/pods
## Modify these values according to your environment.
volumeMounts:
- name: pod-logs
mountPath: /var/log/pods
volumes:
- name: pod-logs
hostPath:
path: /var/log/pods
functions:
image:
tag: v1.41.2