blob: b0c3b0114e1d53d30e7b3cd9d6f9734c4b5b6ba6 [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.
Alexis de Talhouëta52efcc2018-09-18 16:46:12 -040014image: onap/so/vfc-adapter:1.3.0-STAGING-latest
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000015pullPolicy: IfNotPresent
16replicaCount: 1
17minReadySeconds: 10
18containerPort: 8084
19logPath: ./logs/vfc/
20app: vfc-adapter
21service:
22 type: ClusterIP
23 internalPort: 8084
Brian Freeman1a667932018-09-06 14:45:37 -050024 externalPort: 8084
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000025 portName: so-vfc-port
26updateStrategy:
27 type: RollingUpdate
28 maxUnavailable: 1
29 maxSurge: 1
vaibhav16dec0da88292018-08-13 06:10:27 +000030# Resource Limit flavor -By Default using small
31flavor: small
32# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000033resources:
vaibhav16dec0da88292018-08-13 06:10:27 +000034 small:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000035 limits:
36 memory: 4Gi
37 cpu: 2000m
vaibhav16dec0da88292018-08-13 06:10:27 +000038 requests:
39 memory: 1Gi
40 cpu: 500m
41 large:
42 limits:
43 memory: 8Gi
44 cpu: 4000m
45 requests:
46 memory: 2Gi
47 cpu: 1000m
Mandeep Khinda60d36d42018-09-24 15:15:48 +000048 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000049livenessProbe:
50 path: /manage/health
51 port: 8084
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: {}