[GENERAL] Use readiness container v3.0.1
[oom.git] / kubernetes / oof / values.yaml
1 # Copyright © 2017 Amdocs, AT&T, Bell Canada, VMware
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 #################################################################
18 global:
19   nodePortPrefix: 302
20   readinessImage: onap/oom/readiness:3.0.1
21   loggingRepository: docker.elastic.co
22   loggingImage: beats/filebeat:5.5.0
23   persistence: {}
24 #################################################################
25 # Application configuration defaults.
26 #################################################################
27 # application image
28 repository: nexus3.onap.org:10001
29 image: onap/optf-osdf:2.0.4
30 pullPolicy: Always
31
32 # flag to enable debugging - application support required
33 debugEnabled: false
34
35 # application configuration
36 config:
37   msbgateway: msb-iag
38   msbPort: 80
39   placementVersioningEnabled: True
40   # Placement API latest version numbers to be set in HTTP header
41   placementMajorVersion: "1"
42   placementMinorVersion: "0"
43   placementPatchVersion: "0"
44   # Placement API default version numbers to be set in HTTP header
45   placementDefaultMajorVersion: "1"
46   placementDefaultMinorVersion: "0"
47   placementDefaultPatchVersion: "0"
48
49   # Url and credentials for Conductor.
50   conductorUrl: https://oof-has-api:8091/v1/plans/
51   conductorPingWaitTime: 10
52   conductorMaxRetries: 30
53   # versions to be set in HTTP header
54   conductorMinorVersion: 0
55   # Url and credentials for the Policy Platform
56   policyPlatformUrl: https://policy-xacml-pdp:6969/policy/pdpx/v1/decision  # Policy Dev platform URL
57   policyPlatformEnv: TEST # Environment for policy platform
58   # Credentials for the message reader - A placeholder.
59   messageReaderHosts: NA
60   messageReaderTopic: NA
61   # Credentials for the SDC interface - A placeholder.
62   sdcUrl: NA
63   sdcONAPInstanceID: NA
64   #AAF Authentication
65   is_aaf_enabled: False
66   aaf_cache_expiry_mins: 5
67   aaf_url: https://aaf-service:8100
68   aaf_user_roles:
69       - '/placement:org.onap.oof.access|*|read ALL'
70       - '/pci:org.onap.oof.access|*|read ALL'
71   # Secret Management Service from AAF
72   aaf_sms_url: https://aaf-sms
73   aaf_sms_port: 10443
74   aaf_sms_timeout: 30
75   secret_domain: osdf
76   aaf_ca_certs: /opt/app/ssl_cert/aaf_root_ca.cer
77   # config db api
78   configDbUrl: http://config.db.url:8080
79   configDbGetCellListUrl: 'SDNCConfigDBAPI/getCellList'
80   configDbGetNbrListUrl: 'SDNCConfigDBAPI/getNbrList'
81 # default number of instances
82 replicaCount: 1
83 nodeSelector: {}
84 affinity: {}
85 # Resource Limit flavor -By Default using small
86 flavor: small
87 # Segregation for Different environment (Small and Large)
88 resources:
89   small:
90     limits:
91       memory: 2Gi
92       cpu: 1000m
93     requests:
94       memory: 1Gi
95       cpu: 500m
96   large:
97     limits:
98       memory: 4Gi
99       cpu: 2000m
100     requests:
101       memory: 2Gi
102       cpu: 1000m
103   unlimited: {}
104 # probe configuration parameters
105 liveness:
106   initialDelaySeconds: 10
107   periodSeconds: 10
108   # necessary to disable liveness probe when setting breakpoints
109   # in debugger so K8s doesn't restart unresponsive container
110   enabled: true
111 readiness:
112   initialDelaySeconds: 10
113   periodSeconds: 10
114 service:
115   type: NodePort
116   name: oof-osdf
117   externalPort: 8698
118   internalPort: 8699
119   nodePort: 48
120 ingress:
121   enabled: false
122   service:
123     - baseaddr: "oofosdf"
124       name: "oof-osdf"
125       port: 8698
126   config:
127     ssl: "redirect"