blob: d1be03b54165122474e12636e0e2ac5f3e83782c [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.
jmacc4f04d32018-10-12 18:24:24 +000014#################################################################
15# Global configuration defaults.
16#################################################################
17global:
18 nodePortPrefix: 302
19 nodePortPrefixExt: 304
20 repository: nexus3.onap.org:10001
21 readinessRepository: oomk8s
Mahendra Raghuwanshi72b69c12019-04-04 10:43:25 +000022 readinessImage: readiness-check:2.0.2
jmacc4f04d32018-10-12 18:24:24 +000023 persistence:
24 mountPath: /dockerdata-nfs
25
26#################################################################
27# Application configuration defaults.
28#################################################################
29repository: nexus3.onap.org:10001
seshukmfb56d712019-10-14 10:46:52 +053030image: onap/so/sdnc-adapter:1.5.3
jmacc4f04d32018-10-12 18:24:24 +000031pullPolicy: Always
32
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000033replicaCount: 1
34minReadySeconds: 10
35containerPort: 8086
36logPath: ./logs/sdnc/
37app: sdnc-adapter
38service:
39 type: ClusterIP
40 internalPort: 8086
Brian Freeman1a667932018-09-06 14:45:37 -050041 externalPort: 8086
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000042 portName: so-sdnc-port
43updateStrategy:
44 type: RollingUpdate
45 maxUnavailable: 1
46 maxSurge: 1
vaibhav16dec0da88292018-08-13 06:10:27 +000047# Resource Limit flavor -By Default using small
48flavor: small
49# Segregation for Different environment (Small and Large)
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000050resources:
vaibhav16dec0da88292018-08-13 06:10:27 +000051 small:
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000052 limits:
53 memory: 4Gi
54 cpu: 2000m
vaibhav16dec0da88292018-08-13 06:10:27 +000055 requests:
56 memory: 1Gi
57 cpu: 500m
58 large:
59 limits:
60 memory: 8Gi
61 cpu: 4000m
62 requests:
63 memory: 2Gi
64 cpu: 1000m
Mandeep Khinda60d36d42018-09-24 15:15:48 +000065 unlimited: {}
Ramesh Parthasarathy3cd3fb12018-09-05 01:47:29 +000066livenessProbe:
67 path: /manage/health
68 port: 8086
69 scheme: HTTP
70 initialDelaySeconds: 600
71 periodSeconds: 60
72 timeoutSeconds: 10
73 successThreshold: 1
74 failureThreshold: 3
75ingress:
76 enabled: false
77nodeSelector: {}
78tolerations: []
Brian Freeman1a667932018-09-06 14:45:37 -050079affinity: {}