Add DCAE healthcheck
[oom.git] / kubernetes / dcaegen2 / charts / dcae-healthcheck / values.yaml
1 #============LICENSE_START========================================================
2 #=================================================================================
3 # Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
4 # Copyright © 2018 Amdocs, Bell Canada
5 # ================================================================================
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17 # ============LICENSE_END=========================================================
18
19 #################################################################
20 # Global configuration defaults.
21 #################################################################
22 global:
23   nodePortPrefix: 302
24   repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiZGNhZUBkY2FlLm9uYXAub3JnIiwiYXV0aCI6IlpHOWphMlZ5T21SdlkydGxjZz09In19
25   readinessRepository: oomk8s
26   readinessImage: readiness-check:1.1.0
27   loggingRepository: docker.elastic.co
28   loggingImage: beats/filebeat:5.5.0
29  
30 service:
31   name: dcae-healthcheck
32   internalPort: 80
33   externalPort: 80
34   type: ClusterIP
35  
36 # probe configuration parameters
37 liveness:
38   initialDelaySeconds: 10
39   periodSeconds: 10
40   # necessary to disable liveness probe when setting breakpoints
41   # in debugger so K8s doesn't restart unresponsive container
42   enabled: true
43
44 readiness:
45   initialDelaySeconds: 10
46   periodSeconds: 10
47 # application image
48 repository: nexus3.onap.org:10001
49 image: onap/org.onap.dcaegen2.deployments.healthcheck-container:1.0.0
50
51 # Kubernetes namespace for components deployed via Cloudify manager
52 # If empty, use the common namespace
53 dcae_ns: "dcae"
54