blob: eb0588ff319359fddebae792914d899f2a02a9a4 [file] [log] [blame]
ac25508ac97172018-04-18 14:23:17 +02001# Copyright © 2017 Amdocs, Bell Canada
Mukul379e2522018-09-05 12:26:02 +00002# Modifications Copyright © 2018 AT&T
ac25508ac97172018-04-18 14:23:17 +02003#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8# http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
ac25508ac97172018-04-18 14:23:17 +020015
16#################################################################
17# Global configuration defaults.
18#################################################################
19global:
20 nodePortPrefix: 302
21 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
22 persistence: {}
23
24#################################################################
25# Application configuration defaults.
26#################################################################
27
28# BusyBox image
29busyboxRepository: registry.hub.docker.com
30busyboxImage: library/busybox:latest
31
32# application image
33loggingRepository: docker.elastic.co
ac255007f46962018-05-17 11:33:00 +020034image: elasticsearch/elasticsearch:5.6.9
35pullPolicy: Always
ac25508ac97172018-04-18 14:23:17 +020036
37# flag to enable debugging - application support required
38debugEnabled: false
39
40# application configuration
41# Example:
42config: {}
43
44# default number of instances
45replicaCount: 1
46
47nodeSelector: {}
48
49affinity: {}
50
51# probe configuration parameters
52liveness:
53 initialDelaySeconds: 10
54 periodSeconds: 10
55 # necessary to disable liveness probe when setting breakpoints
56 # in debugger so K8s doesn't restart unresponsive container
57 enabled: true
58
59readiness:
60 initialDelaySeconds: 10
61 periodSeconds: 10
62
63## Persist data to a persitent volume
64persistence:
65 enabled: true
66
67 ## A manually managed Persistent Volume and Claim
68 ## Requires persistence.enabled: true
69 ## If defined, PVC must be created manually before volume will be bound
70 # existingClaim:
71 volumeReclaimPolicy: Retain
72
73 ## database data Persistent Volume Storage Class
74 ## If defined, storageClassName: <storageClass>
75 ## If set to "-", storageClassName: "", which disables dynamic provisioning
76 ## If undefined (the default) or set to null, no storageClassName spec is
77 ## set, choosing the default provisioner. (gp2 on AWS, standard on
78 ## GKE, AWS & OpenStack)
79 accessMode: ReadWriteMany
80 size: 4Gi
81 mountPath: /dockerdata-nfs
82 mountSubPath: clamp/dashboard-elasticsearch/data
BorislavGca4ccd62018-05-16 11:30:25 +000083 mountSubPathLogs: clamp
ac25508ac97172018-04-18 14:23:17 +020084
85service:
86 type: ClusterIP
87 name: cdash-es
88 portName: cdash-es-rest
89 externalPort: 9200
90 internalPort: 9200
91 type2: ClusterIP
92 portName2: cdash-es-tcp
93 externalPort2: 9300
94 internalPort2: 9300
95
96ingress:
97 enabled: false
98
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +020099#resources: {}
ac25508ac97172018-04-18 14:23:17 +0200100 # We usually recommend not to specify default resources and to leave this as a conscious
101 # choice for the user. This also increases chances charts run on environments with little
102 # resources, such as Minikube. If you do want to specify resources, uncomment the following
103 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
104 #
105 # Example:
106 # Configure resource requests and limits
107 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
108 # Minimum memory for development is 2 CPU cores and 4GB memory
109 # Minimum memory for production is 4 CPU cores and 8GB memory
Determe, Sebastien (sd378r)d600a8d2018-06-01 11:27:49 +0200110resources:
111 limits:
112 cpu: 1
113 memory: 4Gi
114 requests:
115 cpu: 10m
116 memory: 2.5Gi