Fix cloudify manager image version
[oom.git] / kubernetes / dcaegen2 / charts / dcae-cloudify-manager / 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 config:
31   logstashServiceName: log-ls
32   logstashPort: 5044
33   # Addresses of other ONAP entities
34   address:
35     consul:
36       host: consul-server
37       port: 8500
38
39 #################################################################
40 # Application configuration defaults.
41 #################################################################
42 # application image
43 repository: nexus3.onap.org:10001
44 image: onap/org.onap.dcaegen2.deployments.cm-container:1.3.0
45 pullPolicy: Always
46
47 # probe configuration parameters
48 liveness:
49   initialDelaySeconds: 10
50   periodSeconds: 10
51   # necessary to disable liveness probe when setting breakpoints
52   # in debugger so K8s doesn't restart unresponsive container
53   enabled: true
54
55 readiness:
56   initialDelaySeconds: 10
57   periodSeconds: 10
58
59 service:
60   type: ClusterIP
61   name: dcae-cloudify-manager
62   externalPort: 80
63   internalPort: 80
64
65 # Kubernetes namespace for components deployed via Cloudify manager
66 # If empty, use the common namespace
67 dcae_ns: "dcae"