This repository has been archived by the owner on Jan 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
/
values.yaml
104 lines (93 loc) · 2.79 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
## Image Settings
##
## ref: https://hub.docker.com/r/library/chronograf/tags/
image:
repository: "chronograf"
tag: "1.7.11-alpine"
pullPolicy: IfNotPresent
## Specify a service type
## ClusterIP is default
## ref: http://kubernetes.io/docs/user-guide/services/
##
service:
replicas: 1
type: ClusterIP
## Persist data to a persitent volume
##
persistence:
enabled: false
## If defined, volume.beta.kubernetes.io/storage-class: <storageClass>
## Default: volume.alpha.kubernetes.io/storage-class: default
##
# storageClass:
accessMode: ReadWriteOnce
size: 8Gi
## Configure resource requests and limits
## ref: http://kubernetes.io/docs/user-guide/compute-resources/
##
resources:
requests:
memory: 256Mi
cpu: 0.1
limits:
memory: 2Gi
cpu: 2
## Pod priority
## https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/
# priorityClassName: ""
## Node labels for pod assignment
## ref: https://kubernetes.io/docs/user-guide/node-selection/
#
nodeSelector: {}
## Tolerations for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
##
tolerations: []
## Affinity for pod assignment
## ref: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#affinity-and-anti-affinity
##
affinity: {}
## Configure the ingress object to hook into existing infastructure
## ref : http://kubernetes.io/docs/user-guide/ingress/
## OPTIONALLY you can set .Values.ingress.secretName to set which secret to use
##
ingress:
enabled: false
tls: false
hostname: chronograf.foobar.com
annotations:
# kubernetes.io/ingress.class: "nginx"
# secretName: my-tls-cert
# kubernetes.io/tls-acme: "true"
## OAuth Settings for OAuth Providers
## More information -> https://docs.influxdata.com/chronograf/v1.7/administration/managing-security/
##
oauth:
# Need to set to true to use any of the oauth options
enabled: false
# Used for JWT to support running multiple copies of Chronograf
token_secret: CHANGE_ME
github:
enabled: false
client_id: CHANGE_ME
client_secret: CHANGE_ME
# This is a comma seperated list of GH organizations (OPTIONAL)
gh_orgs: ""
google:
enabled: false
client_id: CHANGE_ME
client_secret: CHANGE_ME
public_url: "" # eg. http://chronograf.foobar.com
# This is a comma seperated list of Google Apps domains (OPTIONAL)
google_domains: ""
heroku:
enabled: false
client_id: CHANGE_ME
client_secret: CHANGE_ME
# This is a comma seperated list of Heroku organizations (OPTIONAL)
he_orgs: ""
## Extra environment variables that will be passed onto deployment pods
env: {}
## The name of a secret in the same kubernetes namespace which contain values to be added to the environment
## This can be useful for auth tokens, etc
envFromSecret: ""