blob: cdf1568b6b8b500a85ec6e74e94790e6cc589b71 [file] [log] [blame]
Geora Barskya3f067c2018-07-19 16:46:37 -04001# 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
20 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:6.3.1
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: 120
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: 120
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: pomba/elasticsearch/data
81 mountSubPathLogs: pomba
82
83service:
84 type: ClusterIP
85 name: pomba-es
86 externalPort: 9200
87 internalPort: 9200
88 type2: ClusterIP
89 name2: pomba-es-tcp
90 externalPort2: 9300
91 internalPort2: 9300
92
93ingress:
94 enabled: false
95
96resources: {}
97 # We usually recommend not to specify default resources and to leave this as a conscious
98 # choice for the user. This also increases chances charts run on environments with little
99 # resources, such as Minikube. If you do want to specify resources, uncomment the following
100 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
101 #
102 # Example:
103 # Configure resource requests and limits
104 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
105 # Minimum memory for development is 2 CPU cores and 4GB memory
106 # Minimum memory for production is 4 CPU cores and 8GB memory
107#resources:
108# limits:
109# cpu: 2
110# memory: 4Gi
111# requests:
112# cpu: 2
113# memory: 4Gi