-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
72 lines (60 loc) · 1.42 KB
/
values.yaml
File metadata and controls
72 lines (60 loc) · 1.42 KB
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
replicaCount: 3
image:
pullPolicy: IfNotPresent
name: entropydata/entropy-data-ce # use entropydata/entropy-data for enterprise version
tag: 1.9.8 # check latest version
service:
type: ClusterIP # Can be ClusterIP, LoadBalancer, or NodePort
port: 8080
entropydata:
host: https://entropy-data.example.com
database:
url: jdbc:postgresql://localhost:5432/postgres # change to your database URL
secretName: entropy-data-database # create secret beforehand
usernameKey: username
passwordKey: password
smtp:
host: smtp.example.com
port: "1025"
secretName: entropy-data-smtp # create secret beforehand
usernameKey: username
passwordKey: password
sso:
azure:
enabled: false
issuerUri: "https://login.microsoftonline.com/YOUR_TENANT_UUID/v2.0"
secretName: entropy-data-azure-sso # create secret beforehand
clientIdKey: client-id
clientSecretKey: client-secret
# Additional environment variables to be set in the deployment
# Format:
# env:
# - name: VARIABLE_NAME
# value: "variable-value"
env: []
resources:
limits:
cpu: 2
memory: 4Gi
requests:
cpu: 2
memory: 4Gi
startupProbe:
httpGet:
path: /login
port: 8080
failureThreshold: 30
periodSeconds: 10
livenessProbe:
initialDelaySeconds: 60
periodSeconds: 30
httpGet:
path: /login
port: 8080
readinessProbe:
httpGet:
path: /login
port: 8080
nodeSelector: {}
tolerations: []
affinity: {}