blob: f15fffb0550ac53eff55cbaccf83d7b30c0e058f [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
19 repository: nexus3.onap.org:10001
Sylvain Desbureaux1694e1d2020-08-21 09:58:25 +020020 readinessImage: onap/oom/readiness:3.0.1
seshukm0df1f8e2020-08-17 21:45:49 +053021 aafAgentImage: onap/aaf/aaf_agent:2.1.20
22 envsubstImage: dibi/envsubst
MichaelMorris74fda382019-03-17 09:36:27 +000023 persistence:
24 mountPath: /dockerdata-nfs
seshukm0df1f8e2020-08-17 21:45:49 +053025 security:
26 aaf:
27 enabled: false
28 aaf:
29 auth:
30 header: Basic c29Ac28ub25hcC5vcmc6ZGVtbzEyMzQ1Ngo=
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +010031
32#################################################################
MichaelMorris74fda382019-03-17 09:36:27 +000033# Application configuration defaults.
34#################################################################
35repository: nexus3.onap.org:10001
seshukm40ec9fa2020-07-08 14:26:34 +053036image: onap/so/vnfm-adapter:1.6.4
MichaelMorris74fda382019-03-17 09:36:27 +000037pullPolicy: Always
38
seshukm0df1f8e2020-08-17 21:45:49 +053039aaf:
40 auth:
41 username: so@so.onap.org
42 password: 8DB1C939BFC6A35C3832D0E52E452D0E05AE2537AF142CECD125FF827C05A972FDD0F4700547DA
43aai:
44 auth: 2A11B07DB6214A839394AA1EC5844695F5114FC407FF5422625FB00175A3DCB8A1FF745F22867EFA72D5369D599BBD88DA8BED4233CF5586
45mso:
46 key: 07a7159d3bf51a0e53be7a8f89699be7
47sdc:
48 username: mso
49 password: 76966BDD3C7414A03F7037264FF2E6C8EEC6C28F2B67F2840A1ED857C0260FEE731D73F47F828E5527125D29FD25D3E0DE39EE44C058906BF1657DE77BF897EECA93BDC07FA64F
50 key: 566B754875657232314F5548556D3665
51
MichaelMorris74fda382019-03-17 09:36:27 +000052replicaCount: 1
53minReadySeconds: 10
seshukm0df1f8e2020-08-17 21:45:49 +053054containerPort: &containerPort 9092
MichaelMorris74fda382019-03-17 09:36:27 +000055logPath: ./logs/vnfm-adapter/
56app: vnfm-adapter
57service:
58 type: NodePort
seshukm0df1f8e2020-08-17 21:45:49 +053059 internalPort: *containerPort
60 externalPort: *containerPort
MichaelMorris74fda382019-03-17 09:36:27 +000061 nodePort: "06"
62 portName: so-vnfm-port
63updateStrategy:
64 type: RollingUpdate
65 maxUnavailable: 1
66 maxSurge: 1
seshukm0df1f8e2020-08-17 21:45:49 +053067
68#################################################################
69# soHelpers part
70#################################################################
71soHelpers:
72 nameOverride: so-vnfm-cert-init
73 certInitializer:
74 nameOverride: so-vnfm-cert-init
75 credsPath: /opt/app/osaaf/local
76 cadi:
77 apiEnforcement: org.onap.so.vnfmAdapterPerm
78 containerPort: *containerPort
79
MichaelMorris74fda382019-03-17 09:36:27 +000080# Resource Limit flavor -By Default using small
81flavor: small
82# Segregation for Different environment (Small and Large)
83resources:
84 small:
85 limits:
86 memory: 4Gi
87 cpu: 2000m
88 requests:
89 memory: 1Gi
90 cpu: 500m
91 large:
92 limits:
93 memory: 8Gi
94 cpu: 4000m
95 requests:
96 memory: 2Gi
97 cpu: 1000m
98 unlimited: {}
99livenessProbe:
100 port: 9092
101 initialDelaySeconds: 600
102 periodSeconds: 60
103 timeoutSeconds: 10
104 successThreshold: 1
105 failureThreshold: 3
106ingress:
107 enabled: false
Lucjan Bryndza426a82c2019-08-14 09:14:12 +0200108 service:
109 - baseaddr: "sovnfmadapter"
110 name: "so-vnfm-adapter"
111 port: 9092
112 config:
113 ssl: "redirect"
MichaelMorris74fda382019-03-17 09:36:27 +0000114nodeSelector: {}
115tolerations: []
Sylvain Desbureauxaadf5452020-03-18 18:13:51 +0100116affinity: {}