-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathflagsmith-values.yaml
54 lines (48 loc) · 1.13 KB
/
flagsmith-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
# Use an existing secret that has your Docker registry credentials:
#
#global:
# image:
# imagePullSecrets:
# - name: flagsmithofficial-example-pull-secret
serviceMonitor:
enabled: true
api:
livenessProbe:
exec:
command:
- /usr/bin/python
- -c
- |
import socket
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.settimeout(1)
sock.connect(('localhost', 8000))
sock.close()
image:
repository: quay.io/flagsmithofficial/flagsmith-enterprise-api
extraEnv:
USE_SECURE_COOKIES: false
LOG_FORMAT: json
ACCESS_LOG_LOCATION: '-'
ACCESS_LOG_EXTRA_ITEMS: '{flagsmith.environment_id}e'
taskProcessor:
image:
repository: quay.io/flagsmithofficial/flagsmith-enterprise-api
enabled: true
extraEnv:
ACCESS_LOG_LOCATION: '-'
ACCESS_LOG_FORMAT: json
TASK_PROCESSOR_NUM_THREADS: 5
frontend:
image:
repository: quay.io/flagsmithofficial/flagsmith-frontend
extraEnv:
USE_SECURE_COOKIES: false
postgresql:
enabled: true
metrics:
enabled: true
serviceMonitor:
enabled: true
influxdb2:
enabled: false