forked from helm/charts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
values.yaml
89 lines (82 loc) · 2.42 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
## Image Settings
##
image:
repository: "docker.io/chronograf"
tag: "1.7-alpine"
pullPolicy: "Always"
## Specify a service type
## ClusterIP is default
## ref: http://kubernetes.io/docs/user-guide/services/
##
service:
replicas: 1
type: ClusterIP
## Persist data to a persistent volume
##
persistence:
enabled: false
## chronograf data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# 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
## 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://github.com/influxdata/chronograf/blob/master/docs/auth.md
##
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 separated list of GH organizations (OPTIONAL)
gh_orgs: ""
google:
enabled: false
client_id: CHANGE_ME
client_secret: CHANGE_ME
# eg. http://chronograf.foobar.com
public_url: ""
# This is a comma separated list of Google Apps domains (OPTIONAL)
domains: ""
heroku:
enabled: false
client_id: CHANGE_ME
client_secret: CHANGE_ME
# This is a comma separated 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: ""