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