forked from ThoughtWorksInc/ml-cd-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalues.yaml
69 lines (60 loc) · 1.54 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
# Default values for ml-cd-starter-kit.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
ml-app-template:
image:
repository: davified/ml-app-template # replace this with your own docker image
tag: latest
gocd:
server:
service:
type: LoadBalancer # expose gocd as a service
elasticsearch:
enabled: true
kibana:
enabled: true
service:
type: LoadBalancer
files:
kibana.yml:
elasticsearch.url: http://ml-cd-starter-kit-elasticsearch-client:9200
grafana:
service:
type: LoadBalancer
fluentd:
enabled: true
service:
type: LoadBalancer
fluent-bit:
enabled: false
fluentd-elasticsearch:
enabled: true
nginx-ldapauth-proxy:
enabled: false
# Example config to get it working with ELK. Adjust as you need to.
# proxy:
# port: 5601
# # This is the internal hostname for the kibana service
# host: "elk-kibana.default.svc.cluster.local"
# authName: "ELK:Infrastructure:LDAP"
# ldapHost: "ldap.example.com"
# ldapDN: "dc=example,dc=com"
# ldapFilter: "objectClass=organizationalPerson"
# ldapBindDN: "cn=reader,dc=example,dc=com"
# requires:
# - name: "ELK-USER"
# filter: "cn=elkuser,ou=groups,dc=example,dc=com"
# ingress:
# enabled: true
# hosts:
# - "elk.example.com"
# annotations:
# kubernetes.io/ingress.class: nginx
# tls:
# - hosts:
# - elk.example.com
# secretName: example-elk-tls
# secrets:
# ldapBindPassword: PASSWORD
elasticsearch-exporter:
enabled: false