blob: 20f5de8a600bec055597cb9c251d8eb55570d335 [file] [log] [blame]
AndrewLamb5b4d13d2020-08-12 14:19:36 +01001# Copyright © 2020 Nordix Foundation
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.
14
15#################################################################
16# Global configuration defaults.
17#################################################################
18global:
19 nodePortPrefixExt: 304
20 repository: nexus3.onap.org:10001
21 readinessRepository: oomk8s
22 readinessImage: readiness-check:2.0.2
23 persistence:
24 mountPath: /dockerdata-nfs
25
26#################################################################
27# Secrets metaconfig
28#################################################################
29secrets:
30 - uid: "so-onap-certs"
31 externalSecret: '{{ tpl (default "" .Values.certSecret) . }}'
32 type: generic
33 filePaths: '{{ .Values.secretsFilePaths }}'
34 - uid: etsi-nfvo-nslcm-creds
35 name: '{{ include "common.release" . }}-so-etsi-nfvo-nslcm-creds'
36 type: basicAuth
37 externalSecret: '{{ tpl (default "" .Values.etsi.nfvo.nslcm.credsExternalSecret) . }}'
38 login: '{{ .Values.etsi.nfvo.nslcm.username }}'
39 password: '{{ .Values.etsi.nfvo.nslcm.password }}'
40
41#################################################################
42# Application configuration defaults.
43#################################################################
44repository: nexus3.onap.org:10001
45image: onap/so/so-etsi-nfvo-ns-lcm:1.7.1
46pullPolicy: Always
47
48etsi:
49 nfvo:
50 nslcm:
51 username: so-etsi-nfvo-ns-lcm
52replicaCount: 1
53minReadySeconds: 10
54containerPort: 9095
55logPath: ./logs/so-etsi-nfvo-ns-lcm/
56app: so-etsi-nfvo-ns-lcm
57service:
58 type: ClusterIP
59 name: so-etsi-nfvo-ns-lcm
60 annotations:
61 service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
62 ports:
63 - name: nfvo-nslcm-port
64 port: 9095
65updateStrategy:
66 type: RollingUpdate
67 maxUnavailable: 1
68 maxSurge: 1
69# Resource Limit flavor -By Default using small
70flavor: small
71# Segregation for Different environment (Small and Large)
72resources:
73 small:
74 limits:
75 memory: 4Gi
76 cpu: 2000m
77 requests:
78 memory: 1Gi
79 cpu: 500m
80 large:
81 limits:
82 memory: 8Gi
83 cpu: 4000m
84 requests:
85 memory: 2Gi
86 cpu: 1000m
87 unlimited: {}
88livenessProbe:
89 port: 9095
90 initialDelaySeconds: 600
91 periodSeconds: 60
92 timeoutSeconds: 10
93 successThreshold: 1
94 failureThreshold: 3
95ingress:
96 enabled: false
97 service:
98 - baseaddr: "soetsinfvonslcm"
99 name: "so-etsi-nfvo-ns-lcm"
100 port: 9095
101 config:
102 ssl: "redirect"
103nodeSelector: {}
104tolerations: []
105affinity: {}