blob: 2083633599f7ebe1b88f9f07563f4550ed4132bc [file] [log] [blame]
Mandeep Khinda60d36d42018-09-24 15:15:48 +00001# Copyright © 2018 AT&T USA
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14repository: nexus3.onap.org:10001
Alexis de Talhouëta52efcc2018-09-18 16:46:12 -040015image: onap/so/catalog-db-adapter:1.3.0-STAGING-latest
Mandeep Khinda60d36d42018-09-24 15:15:48 +000016pullPolicy: IfNotPresent
17replicaCount: 1
18minReadySeconds: 10
19containerPort: 8082
20logPath: ./logs/catdb/
21app: catalog-db-adapter
22service:
23 type: ClusterIP
24 internalPort: 8082
25 externalPort: 8082
26 portName: so-catdb-port
27updateStrategy:
28 type: RollingUpdate
29 maxUnavailable: 1
30 maxSurge: 1
31# Resource Limit flavor -By Default using small
32flavor: small
33# Segregation for Different environment (Small and Large)
34resources:
35 small:
36 limits:
37 memory: 4Gi
38 cpu: 2000m
39 requests:
40 memory: 1Gi
41 cpu: 500m
42 large:
43 limits:
44 memory: 8Gi
45 cpu: 4000m
46 requests:
47 memory: 2Gi
48 cpu: 1000m
49 unlimited: {}
50livenessProbe:
51 path: /manage/health
52 port: 8082
53 scheme: HTTP
54 initialDelaySeconds: 600
55 periodSeconds: 60
56 timeoutSeconds: 10
57 successThreshold: 1
58 failureThreshold: 3
59ingress:
60 enabled: false
61nodeSelector: {}
62tolerations: []
63affinity: {}