98ce044d0348d2182d65cf81598020210d68fb1b
[oom.git] / kubernetes / clamp / charts / clamp-dash-es / values.yaml
1 # Copyright © 2017 Amdocs, Bell Canada
2 # Modifications Copyright © 2018 AT&T
3 #
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.
15
16 #################################################################
17 # Global configuration defaults.
18 #################################################################
19 global:
20   nodePortPrefix: 302
21   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
22   persistence: {}
23
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27
28 # BusyBox image
29 busyboxRepository: registry.hub.docker.com
30 busyboxImage: library/busybox:latest
31
32 # application image
33 loggingRepository: docker.elastic.co
34 image: elasticsearch/elasticsearch-oss:6.1.3
35 pullPolicy: Always
36
37 # flag to enable debugging - application support required
38 debugEnabled: false
39
40 # application configuration
41 # Example:
42 config: {}
43
44 # default number of instances
45 replicaCount: 1
46
47 nodeSelector: {}
48
49 affinity: {}
50
51 # probe configuration parameters
52 liveness:
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
59 readiness:
60   initialDelaySeconds: 10
61   periodSeconds: 10
62
63 ## Persist data to a persitent volume
64 persistence:
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
83   mountSubPathLogs: clamp
84
85 service:
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
96 ingress:
97   enabled: false
98
99 #resources: {}
100   # 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
110 resources:
111   limits:
112     cpu: 1
113     memory: 4Gi
114   requests:
115     cpu: 10m
116     memory: 2.5Gi