blob: 2b12660123ea1e2d1ff5e3b1cccc7a896b93da3d [file] [log] [blame]
Shane Danielb36bfcc2018-06-26 20:30:18 +00001# Copyright © 2018 Amdocs
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 nodePortPrefix: 302
20 repository: nexus3.onap.org:10001
21
22#################################################################
23# Application configuration defaults.
24#################################################################
25# application image
26repository: nexus3.onap.org:10001
Prudence Auccc93ea2019-09-13 13:26:11 +000027image: onap/pomba-sdnc-context-builder:1.5.1
Shane Danielb36bfcc2018-06-26 20:30:18 +000028pullPolicy: Always
29
30# flag to enable debugging - application support required
31debugEnabled: false
32
33# application configuration
34# Example:
35config:
36 # AAI Rest Client Connection
37 aaiServiceName: aai
38 aaiPort: 8443
39 aaiUsername: AAI
40 aaiPassword: OBF:1gfr1ev31gg7
41 aaiHttpProtocol: https
42 aaiAuthentication: basic_auth
43 aaiTrustStorePath: n/a
44 aaiKeyStorePath: n/a
45 aaiKeyStorePassword: n/a
46 aaiConnectionTimeout: 5000
Norm Traxler2f220392018-12-20 15:55:50 +000047 aaiReadTimeout: 5000
Shane Danielb36bfcc2018-06-26 20:30:18 +000048 # HTTP Basic Authorization credentials for Rest Service API
49 aaiHttpUserId: admin
50 aaiHttpPassword: OBF:1u2a1toa1w8v1tok1u30
51 sdncCtxBuilderUserId: admin
52 sdncCtxBuilderPassword: OBF:1u2a1toa1w8v1tok1u30
53
54 # SDNC Rest Client Connection
55 sdncServiceName: sdnc
Norm Traxler2f220392018-12-20 15:55:50 +000056 sdncPort: 8282
57 sdncUsername: admin
58 sdncPassword: OBF:1ks51l8d1o3i1pcc1r2r1e211r391kls1pyj1z7u1njf1lx51go21hnj1y0k1mli1sop1k8o1j651vu91mxw1vun1mze1vv11j8x1k5i1sp11mjc1y161hlr1gm41m111nkj1z781pw31kku1r4p1e391r571pbm1o741l4x1ksp
59 sdncHttpProtocol: http
Shane Danielb36bfcc2018-06-26 20:30:18 +000060 sdncConnectionTimeout: 5000
Norm Traxler2f220392018-12-20 15:55:50 +000061 sdncReadTimeout: 5000
Shane Danielb36bfcc2018-06-26 20:30:18 +000062
63# default number of instances
64replicaCount: 1
65
66nodeSelector: {}
67
68affinity: {}
69
70# probe configuration parameters
71liveness:
Norm Traxler2f220392018-12-20 15:55:50 +000072 initialDelaySeconds: 60
73 periodSeconds: 30
Shane Danielb36bfcc2018-06-26 20:30:18 +000074 # necessary to disable liveness probe when setting breakpoints
75 # in debugger so K8s doesn't restart unresponsive container
76 enabled: true
77
78readiness:
Norm Traxler2f220392018-12-20 15:55:50 +000079 initialDelaySeconds: 60
80 periodSeconds: 30
Shane Danielb36bfcc2018-06-26 20:30:18 +000081
82#Example service definition with external, internal and node ports.
83service:
84 # The default service name (exposed in the service.yaml) will be the same
85 # name as the chart. If the service name needs to be overriden (such as
86 # when a subchart is shared), uncomment the value below.
87 #name: <service-name-override>
88
89 #Services may use any combination of ports depending on the 'type' of
90 #service being defined.
91 type: ClusterIP
92 externalPort: 9530
93 internalPort: 8080
94# nodePort: <replace with unused node port suffix eg. 23>
95 # optional port name override - default can be defined in service.yaml
96 #portName: http
97
98ingress:
99 enabled: false
100
101# Resource Limit flavor -By Default using small
102flavor: small
103# Segregation for Different environment (Small and Large)
104resources:
105 small:
106 limits:
107 cpu: 1
108 memory: 800Mi
109 requests:
110 cpu: 100m
111 memory: 400Mi
112 large:
113 limits:
114 cpu: 2
115 memory: 1600Mi
116 requests:
117 cpu: 200m
118 memory: 800Mi
Norm Traxler2f220392018-12-20 15:55:50 +0000119 unlimited: {}