blob: a72d0c5857f44955525f85d8b370564f7039afc5 [file] [log] [blame]
sebdetd85e24c2019-09-04 18:35:26 +02001# Copyright © 2017 Amdocs, Bell Canada
2# Modifications Copyright © 2018-2019 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#################################################################
19global: # global defaults
20 nodePortPrefix: 302
21 repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ==
22 readinessRepository: oomk8s
23 readinessImage: readiness-check:2.0.0
24 persistence: {}
25
26flavor: small
27
28# application image
29repository: nexus3.onap.org:10001
sebdet06f85c82019-09-16 23:55:22 +020030image: onap/clamp-backend:4.1.2
sebdetd85e24c2019-09-04 18:35:26 +020031pullPolicy: Always
32
33# flag to enable debugging - application support required
34debugEnabled: false
35
36#################################################################
37# Application configuration defaults.
38#################################################################
39config:
40 log:
41 logstashServiceName: log-ls
42 logstashPort: 5044
43 mysqlPassword: strong_pitchou
44 dataRootDir: /dockerdata-nfs
45 springApplicationJson: >
46 {
47 "spring.datasource.cldsdb.url": "jdbc:mariadb:sequential://clampdb.{{ include "common.namespace" . }}:3306/cldsdb4?autoReconnect=true&connectTimeout=10000&socketTimeout=10000&retriesAllDown=3",
48 "clamp.config.sdc.catalog.url": "http://sdc-be.{{ include "common.namespace" . }}:8080/sdc/v1/catalog/",
49 "clamp.config.sdc.hostUrl": "http://sdc-be.{{ include "common.namespace" . }}:8080/",
50 "clamp.config.sdc.serviceUrl": "http://sdc-be.{{ include "common.namespace" . }}:8080/sdc/v1/catalog/services",
51 "clamp.config.sdc.serviceUsername": "clamp",
52 "clamp.config.sdc.servicePassword": "b7acccda32b98c5bb7acccda32b98c5b05D511BD6D93626E90D18E9D24D9B78CD34C7EE8012F0A189A28763E82271E50A5D4EC10C7D93E06E0A2D27CAE66B981",
53 "clamp.config.files.sdcController": "file:/opt/clamp/sdc-controllers-config.json",
54 "clamp.config.dcae.inventory.url": "https://inventory.{{ include "common.namespace" . }}:8080",
55 "clamp.config.dcae.dispatcher.url": "https4://deployment-handler.{{ include "common.namespace" . }}:8443",
56 "clamp.config.dcae.deployment.url": "https4://deployment-handler.{{ include "common.namespace" . }}:8443",
57 "clamp.config.dcae.deployment.userName": "none",
58 "clamp.config.dcae.deployment.password": "none",
59 "clamp.config.policy.api.url": "https4://policy-api.{{ include "common.namespace" . }}:6969",
60 "clamp.config.policy.api.userName": "healthcheck",
61 "clamp.config.policy.api.password": "zb!XztG34",
62 "clamp.config.policy.pap.url": "https4://policy-pap.{{ include "common.namespace" . }}:6969",
63 "clamp.config.policy.pap.userName": "healthcheck",
64 "clamp.config.policy.pap.password": "zb!XztG34",
65 "clamp.config.policy.pdpUrl1": "https://pdp.{{ include "common.namespace" . }}:8081/pdp/ , testpdp, alpha123",
66 "clamp.config.policy.pdpUrl2": "https://pdp.{{ include "common.namespace" . }}:8081/pdp/ , testpdp, alpha123",
67 "clamp.config.policy.papUrl": "https://pap.{{ include "common.namespace" . }}:9091/pap/ , testpap, alpha123",
68 "clamp.config.policy.clientKey": "dGVzdA==",
69 "clamp.config.cadi.aafLocateUrl": "https://aaf-locate.{{ include "common.namespace" . }}:8095",
70 "com.att.eelf.logging.path": "/opt/clamp",
71 "com.att.eelf.logging.file": "logback.xml"
72 }
73
74# default number of instances
75replicaCount: 1
76
77nodeSelector: {}
78
79affinity: {}
80
81# probe configuration parameters
82liveness:
83 initialDelaySeconds: 120
84 periodSeconds: 10
85 # necessary to disable liveness probe when setting breakpoints
86 # in debugger so K8s doesn't restart unresponsive container
87 enabled: true
88
89readiness:
90 initialDelaySeconds: 10
91 periodSeconds: 10
92
93
94service:
95 type: ClusterIP
96 name: clamp-backend
97 portName: clamp-backend
98 internalPort: 8443
99 externalPort: 443
100
101ingress:
102 enabled: false
103
104#resources: {}
105 # We usually recommend not to specify default resources and to leave this as a conscious
106 # choice for the user. This also increases chances charts run on environments with little
107 # resources, such as Minikube. If you do want to specify resources, uncomment the following
108 # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
109 #
110 # Example:
111 # Configure resource requests and limits
112 # ref: http://kubernetes.io/docs/user-guide/compute-resources/
113 # Minimum memory for development is 2 CPU cores and 4GB memory
114 # Minimum memory for production is 4 CPU cores and 8GB memory
115resources:
116 small:
117 limits:
118 cpu: 1
119 memory: 1.2Gi
120 requests:
121 cpu: 10m
122 memory: 800Mi
123 large:
124 limits:
125 cpu: 1
126 memory: 1.2Gi
127 requests:
128 cpu: 10m
129 memory: 800Mi
130 unlimited: {}