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