-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvalues.yaml
More file actions
102 lines (93 loc) · 2.68 KB
/
values.yaml
File metadata and controls
102 lines (93 loc) · 2.68 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
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
grafana:
imageOrg: "drycc"
imagePullPolicy: "Always"
imageTag: "canary"
imageRegistry: "registry.drycc.cc"
# limitsCpu: "100m"
# limitsMemory: "50Mi"
nodeAffinityPreset:
key: "drycc.cc/node"
type: "soft"
values:
- "true"
podAffinityPreset:
key: "security"
type: ""
values:
- "drycc-security"
podAntiAffinityPreset:
key: "app"
type: "soft"
values:
- "drycc-monitor-grafana"
# Service
service:
# Provide any additional service annotations
annotations: {}
persistence:
enabled: false
accessMode: ReadWriteOnce
size: 5Gi
# Any custom grafana environment variables
# can be specified as key-value pairs under environment
# this is usually a non required setting.
environment:
ALLOW_SIGN_UP: false
telegraf:
imageOrg: "drycc"
imagePullPolicy: "Always"
imageTag: "canary"
imageRegistry: "registry.drycc.cc"
# limitsCpu: "100m"
# limitsMemory: "50Mi"
nodeAffinityPreset:
key: "drycc.cc/node"
type: "soft"
values:
- "true"
podAffinityPreset:
key: "security"
type: ""
values:
- "drycc-security"
podAntiAffinityPreset:
key: "app"
type: "soft"
values:
- "drycc-monitor-telegraf"
redis:
replicas: 1
port: "6379"
global:
# Set the location of Workflow's influxdb cluster
#
# Valid values are:
# - on-cluster: Run Influxdb within the Kubernetes cluster
# - off-cluster: Influxdb is running outside of the cluster and credentials and connection information will be provided.
influxdbLocation: "on-cluster"
# Set the location of Workflow's grafana instance
#
# Valid values are:
# - on-cluster: Run Grafana within the Kubernetes cluster
# - off-cluster: Grafana is running outside of the cluster
grafanaLocation: "on-cluster"
# 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"
# Role-Based Access Control for Kubernetes >= 1.5
rbac: false
ingressClass: ""
# A domain name consists of one or more parts.
# Periods (.) are used to separate these parts.
# Each part must be 1 to 63 characters in length and can contain lowercase letters, digits, and hyphens (-).
# It must start and end with a lowercase letter or digit.
clusterDomain: "cluster.local"
# The public resolvable hostname to build your cluster with.
#
# This will be the hostname that is used to build endpoints such as "drycc.$HOSTNAME"
platformDomain: ""
# Whether cert_manager is enabled to automatically generate drycc certificates
certManagerEnabled: true