-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathvalues.yaml
More file actions
48 lines (40 loc) · 1.15 KB
/
values.yaml
File metadata and controls
48 lines (40 loc) · 1.15 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
imageOrg: "drycc"
imagePullPolicy: "Always"
imageTag: "canary"
imageRegistry: "registry.drycc.cc"
# limitsCpu: "100m"
# limitsMemory: "50Mi"
nodeAffinityPreset:
key: "drycc.cc/node"
type: "soft"
values:
- "true"
podAffinityPreset:
type: ""
extraMatchLabels:
security: "drycc-security"
podAntiAffinityPreset:
type: "soft"
extraMatchLabels:
app: "drycc-redis"
# The following parameters are configured only when using an on-cluster Redis instance
replicas: 1
# The following parameters are configured only when using an off-cluster Redis instance
addrs: "" # A list of clusters: "127.0.0.1:7001/1,127.0.0.2:7002/1"
password: "redis password" # "" == no password
# Service
service:
# Provide any additional service annotations
annotations: {}
# GCP PDs and EBS volumes are supported only
persistence:
enabled: false # Set to true to enable persistence
size: 5Gi
storageClass: ""
global:
# Set the location of Workflow's redis instance
#
# Valid values are:
# - on-cluster: Run Redis within the Kubernetes cluster
# - off-cluster: Run Redis outside the Kubernetes cluster (configure in redis section)
redisLocation: "on-cluster"