Fix OOM settings
[oom.git] / kubernetes / clamp / charts / clamp-dash-kibana / values.yaml
1 # 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 # Modifications copyright (c) 2018 AT&T Intellectual Property
16
17 #################################################################
18 # Global configuration defaults.
19 #################################################################
20 global:
21   nodePortPrefix: 302
22   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
23   readinessRepository: oomk8s
24   readinessImage: readiness-check:1.1.0
25   persistence: {}
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30
31 # Configuration image
32 configRepository: docker.io
33 configImage: taskrabbit/elasticsearch-dump
34
35
36 # BusyBox image
37 busyboxRepository: registry.hub.docker.com
38 busyboxImage: library/busybox:latest
39
40 # application image
41 loggingRepository: docker.elastic.co
42 image: kibana/kibana:5.6.9
43 pullPolicy: Always
44
45 # flag to enable debugging - application support required
46 debugEnabled: false
47
48 # application configuration
49 config:
50   elasticsearchServiceName: cdash-es
51   elasticsearchPort: 9200
52
53 # default number of instances
54 replicaCount: 1
55
56 nodeSelector: {}
57
58 affinity: {}
59
60 # probe configuration parameters
61 liveness:
62   initialDelaySeconds: 360
63   periodSeconds: 10
64   # necessary to disable liveness probe when setting breakpoints
65   # in debugger so K8s doesn't restart unresponsive container
66   enabled: true
67
68 readiness:
69   initialDelaySeconds: 10
70   periodSeconds: 10
71
72 service:
73   #Example service definition with external, internal and node ports.
74   #Services may use any combination of ports depending on the 'type' of
75   #service being defined.
76   type: NodePort
77   name: cdash-kibana
78   portName: cdash-kibana-http
79   externalPort: 5601
80   internalPort: 5601
81   nodePort: 90
82 ingress:
83   enabled: false
84
85 #resources: {}
86   # We usually recommend not to specify default resources and to leave this as a conscious
87   # choice for the user. This also increases chances charts run on environments with little
88   # resources, such as Minikube. If you do want to specify resources, uncomment the following
89   # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
90   #
91   # Example:
92   # Configure resource requests and limits
93   # ref: http://kubernetes.io/docs/user-guide/compute-resources/
94   # Minimum memory for development is 2 CPU cores and 4GB memory
95   # Minimum memory for production is 4 CPU cores and 8GB memory
96 resources:
97   limits:
98     cpu: 1
99     memory: 2Gi 
100   requests:
101     cpu: 10m
102     memory: 750Mi
103