forked from FIWARE-Ops/marinera
-
Notifications
You must be signed in to change notification settings - Fork 2
/
values.yaml
92 lines (82 loc) · 2.26 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
quantumleap:
# Default values for quantumleap.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
# -- Number of replicas
replicaCount: 2
init:
image:
# -- Container image to deploy
repository: quay.io/fiware/quantumleap-pg-init
# -- Container image tag to deploy
tag: 0.9.0-PRE
image:
# -- Container image to deploy
repository: quay.io/fiware/quantumleap
# -- Container image tag to deploy
tag: 0.9.0-PRE
# -- Pull policy of the image
pullPolicy: IfNotPresent
# health checks are fixed in ql master
readinessProbe:
enabled: true
livenessProbe:
enabled: true
updateStrategy:
rollingUpdate:
# -- Max replicas available when upgrading
maxUnavailable: 1
# -- Type of update strategy
type: RollingUpdate
autoscaling:
# -- Autoscaling Enabled/Disabled
enabled: false
# -- Autoscaling min replicas
minReplicas: 2
# -- Autoscaling max replicas
maxReplicas: 6
# -- Autoscaling target average utilization
targetAverageUtilization: 50
service:
# -- Name of the service
name: quantumleap
# -- Type of the service
type: ClusterIP
# -- Port of the service
externalPort: 80
# -- Port exposed in the application
internalPort: 8668
database:
# -- empty all values to disable cratedb(as enabled by default on the chart)
crate:
host:
port:
defaultdb:
timescale:
# -- Database hostname. Always connect to tsdb service, which is behind the master. Patroni manages the labeling of the Pods.
host: tsdb
# -- Database port
port: 5432
# -- Database name inside Timescale
name: postgres
# -- User to connect to the database
user: postgres
# -- Password for the user to connect to the database
password: test
# -- SSL connection to Timescale. Not working with SSL for the moment
ssl: false
config:
# -- Backend database. Default is timescale
default-backend: "timescale"
resources:
limits:
cpu: 500m
memory: 250Mi
requests:
cpu: 10m
memory: 50Mi
geocoding:
# -- Caching can be disabled by setting the host to empty
redisHost:
runtime:
logLevel: "WARNING"