-
Notifications
You must be signed in to change notification settings - Fork 11
/
values.yaml
149 lines (142 loc) · 2.91 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
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
# Unique ID of callisto instance
instanceID: 'unknown'
rbac:
create: true
callisto:
image:
registry: docker.io
repository: wrike/callisto
tag: 1.2.2
pullPolicy: Always
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
replicas: 1
minReadySeconds: 15
resources:
limits:
cpu: "500m"
memory: "512Mi"
requests:
cpu: "250m"
memory: "128Mi"
serviceAccountName: default
volumes: {}
logLevel: "INFO"
graylogHost: ""
sentryDSN: ""
podLabels: {}
podAnnotations: {}
affinity: {}
tolerations: {}
service:
type: "ClusterIP"
serviceMonitor:
enabled: false
metricRelabelings: {}
relabelings: {}
browser:
name: "chrome"
chromeImage: "selenoid/vnc:chrome_80.0"
firefoxImage: "selenoid/vnc:firefox_82.0"
edgeImage: "browsers/edge:88.0"
firefoxWebdriverPath: "/wd/hub" # because selenoid runs inside firefox container
squid:
enabled: false # squid proxy for browser-pods
socat:
enabled: false
image: "alpine/socat:1.7.3.3-r1"
annotations: {}
affinity: {}
resources: {}
tolerations: {}
hostAliases: []
env:
- name: TZ
value: 'UTC'
- name: ENABLE_VNC
value: 'true'
nginx:
image:
registry:
repository: nginx
tag: '1.17.2-alpine'
pullPolicy: Always
prometheusExporter:
image:
registry:
repository: nginx/nginx-prometheus-exporter
tag: '0.4.0'
pullPolicy: Always
replicas: 1
minReadySeconds: 15
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
resources:
requests:
cpu: "250m"
memory: "128Mi"
livenessProbe:
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 3
readinessProbe:
initialDelaySeconds: 5
periodSeconds: 1
timeoutSeconds: 1
successThreshold: 1
failureThreshold: 3
volumes: {}
podAnnotations: {}
affinity: {}
tolerations: {}
service:
type: "ClusterIP"
serviceMonitor:
enabled: false
metricRelabelings: {}
relabelings: {}
resolver: kube-dns.kube-system.svc.cluster.local
selenoidUi:
image:
registry:
repository: aerokube/selenoid-ui
tag: '1.9.1'
pullPolicy: Always
replicas: 1
minReadySeconds: 15
strategy:
type: RollingUpdate
rollingUpdate:
maxUnavailable: 1
maxSurge: 1
resources:
limits:
cpu: "0.5"
memory: "512Mi"
requests:
cpu: "0.25"
memory: "64Mi"
service:
type: "ClusterIP"
volumes: {}
affinity: {}
tolerations: {}
ingress:
enabled: true
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-read-timeout: "600"
nginx.ingress.kubernetes.io/proxy-send-timeout: "600"
nginx.ingress.kubernetes.io/proxy-connect-timeout: "600"
path: /
hosts:
- callisto.local
tls: []