Merge "Remove controller blueprint chart"
[oom.git] / kubernetes / clamp / charts / clamp-dash-logstash / 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:2.0.0
24   persistence: {}
25 flavor: small
26
27 #################################################################
28 # Application configuration defaults.
29 #################################################################
30
31 # application image
32 repository: nexus3.onap.org:10001
33 image: onap/clamp-dashboard-logstash:4.1.3
34 pullPolicy: Always
35
36 # flag to enable debugging - application support required
37 debugEnabled: false
38
39 # application configuration
40 config:
41   elasticsearchServiceName: cdash-es
42   elasticsearchPort: 9200
43   dmaapHost: message-router
44   dmaapScheme: https
45   dmaapPort: 3905
46   dmaapConsumerGroup: "clampdashboard"
47   dmaapConsumerId: "clampdashboard"
48   eventTopic: "DCAE-CL-EVENT"
49   notificationTopic: "POLICY-CL-MGT"
50   requestTopic: "APPC-CL"
51   logstash_user: "logstash"
52   logstash_pwd: "logstash"
53
54 # default number of instances
55 replicaCount: 1
56
57 nodeSelector: {}
58
59 affinity: {}
60
61 # probe configuration parameters
62 liveness:
63   initialDelaySeconds: 120
64   periodSeconds: 10
65   # necessary to disable liveness probe when setting breakpoints
66   # in debugger so K8s doesn't restart unresponsive container
67   enabled: true
68
69 readiness:
70   initialDelaySeconds: 10
71   periodSeconds: 10
72
73 service:
74   #Example service definition with external, internal and node ports.
75   #Services may use any combination of ports depending on the 'type' of
76   #service being defined.
77   type: ClusterIP
78   name: cdash-ls
79   portName: cdash-ls-healthcheck
80   externalPort: 9600
81   internalPort: 9600
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   small:
98     limits:
99       cpu: 1
100       memory: 1.3Gi
101     requests:
102       cpu: 10m
103       memory: 750Mi
104   large:
105     limits:
106       cpu: 1
107       memory: 1.3Gi
108     requests:
109       cpu: 10m
110       memory: 750Mi
111   unlimited: {}