blob: 6aebf3193263c0280369a074d0eceb0e9a7ee2d6 [file] [log] [blame]
MichaelMorris74fda382019-03-17 09:36:27 +00001# Copyright © 2019 Nordix Foundation
seshukm0df1f8e2020-08-17 21:45:49 +05302# Copyright © 2020 Huawei
MichaelMorris74fda382019-03-17 09:36:27 +00003# 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.
14#################################################################
15# Global configuration defaults.
16#################################################################
17global:
18 nodePortPrefixExt: 304
MichaelMorris74fda382019-03-17 09:36:27 +000019 persistence:
20 mountPath: /dockerdata-nfs
seshukm0df1f8e2020-08-17 21:45:49 +053021 security:
22 aaf:
23 enabled: false
24 aaf:
25 auth:
26 header: Basic c29Ac28ub25hcC5vcmc6ZGVtbzEyMzQ1Ngo=
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010027
28#################################################################
MichaelMorris74fda382019-03-17 09:36:27 +000029# Application configuration defaults.
30#################################################################
Kalkere Ramesh, Sharandf29b1e2020-11-13 15:51:37 -050031image: onap/so/vnfm-adapter:1.7.10
MichaelMorris74fda382019-03-17 09:36:27 +000032pullPolicy: Always
33
seshukm0df1f8e2020-08-17 21:45:49 +053034aaf:
35 auth:
36 username: so@so.onap.org
37 password: 8DB1C939BFC6A35C3832D0E52E452D0E05AE2537AF142CECD125FF827C05A972FDD0F4700547DA
38aai:
39 auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
40mso:
41 key: 07a7159d3bf51a0e53be7a8f89699be7
42sdc:
43 username: mso
44 password: 76966BDD3C7414A03F7037264FF2E6C8EEC6C28F2B67F2840A1ED857C0260FEE731D73F47F828E5527125D29FD25D3E0DE39EE44C058906BF1657DE77BF897EECA93BDC07FA64F
45 key: 566B754875657232314F5548556D3665
46
MichaelMorris74fda382019-03-17 09:36:27 +000047replicaCount: 1
48minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +053049containerPort: &containerPort 9092
MichaelMorris74fda382019-03-17 09:36:27 +000050logPath: ./logs/vnfm-adapter/
51app: vnfm-adapter
52service:
53 type: NodePort
seshukm0df1f8e2020-08-17 21:45:49 +053054 internalPort: *containerPort
55 externalPort: *containerPort
MichaelMorris74fda382019-03-17 09:36:27 +000056 nodePort: "06"
57 portName: so-vnfm-port
58updateStrategy:
59 type: RollingUpdate
60 maxUnavailable: 1
61 maxSurge: 1
seshukm0df1f8e2020-08-17 21:45:49 +053062
63#################################################################
64# soHelpers part
65#################################################################
66soHelpers:
67 nameOverride: so-vnfm-cert-init
68 certInitializer:
69 nameOverride: so-vnfm-cert-init
70 credsPath: /opt/app/osaaf/local
71 cadi:
72 apiEnforcement: org.onap.so.vnfmAdapterPerm
73 containerPort: *containerPort
74
MichaelMorris74fda382019-03-17 09:36:27 +000075# Resource Limit flavor -By Default using small
76flavor: small
77# Segregation for Different environment (Small and Large)
78resources:
79 small:
80 limits:
81 memory: 4Gi
82 cpu: 2000m
83 requests:
84 memory: 1Gi
85 cpu: 500m
86 large:
87 limits:
88 memory: 8Gi
89 cpu: 4000m
90 requests:
91 memory: 2Gi
92 cpu: 1000m
93 unlimited: {}
94livenessProbe:
95 port: 9092
96 initialDelaySeconds: 600
97 periodSeconds: 60
98 timeoutSeconds: 10
99 successThreshold: 1
100 failureThreshold: 3
101ingress:
102 enabled: false
Lucjan Bryndza426a82c2019-08-14 09:14:12 +0200103 service:
104 - baseaddr: "sovnfmadapter"
105 name: "so-vnfm-adapter"
106 port: 9092
107 config:
108 ssl: "redirect"
MichaelMorris74fda382019-03-17 09:36:27 +0000109nodeSelector: {}
110tolerations: []
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100111affinity: {}