blob: 6f301b97745de4241a0534746082f0ee5623a5c7 [file] [log] [blame]
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +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/bpmn-infra:1.3.0-STAGING-latest
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000016pullPolicy: IfNotPresent
17replicaCount: 1
18minReadySeconds: 10
19containerPort: 8081
20logPath: ./logs/bpmn/
21app: so-bpmn-infra
22service:
23 type: ClusterIP
24 internalPort: 8081
Brian Freeman1a667932018-09-06 14:45:37 -050025 externalPort: 8081
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000026 portName: so-bpmn-port
27updateStrategy:
28 type: RollingUpdate
29 maxUnavailable: 1
30 maxSurge: 1
vaibhav16dec0da88292018-08-13 06:10:27 +000031# Resource Limit flavor -By Default using small
Ramesh Parthasarathy1ceefda2018-09-14 21:22:43 +000032flavor: large
vaibhav16dec0da88292018-08-13 06:10:27 +000033# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000034resources:
vaibhav16dec0da88292018-08-13 06:10:27 +000035 small:
36 limits:
37 memory: 4Gi
38 cpu: 2000m
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000039 requests:
40 memory: 1Gi
41 cpu: 500m
vaibhav16dec0da88292018-08-13 06:10:27 +000042 large:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000043 limits:
44 memory: 8Gi
45 cpu: 4000m
vaibhav16dec0da88292018-08-13 06:10:27 +000046 requests:
47 memory: 2Gi
48 cpu: 1000m
Mandeep Khinda60d36d42018-09-24 15:15:48 +000049 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000050livenessProbe:
51 path: /manage/health
52 scheme: HTTP
53 initialDelaySeconds: 600
54 periodSeconds: 60
55 timeoutSeconds: 10
56 successThreshold: 1
57 failureThreshold: 3
58ingress:
59 enabled: false
60nodeSelector: {}
61tolerations: []
Brian Freeman1a667932018-09-06 14:45:37 -050062affinity: {}