Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 1 | # Copyright © 2018 AT&T USA |
| 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. |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 14 | ################################################################# |
| 15 | # Global configuration defaults. |
| 16 | ################################################################# |
| 17 | global: |
| 18 | nodePortPrefix: 302 |
| 19 | nodePortPrefixExt: 304 |
| 20 | repository: nexus3.onap.org:10001 |
| 21 | readinessRepository: oomk8s |
Mahendra Raghuwanshi | 72b69c1 | 2019-04-04 10:43:25 +0000 | [diff] [blame] | 22 | readinessImage: readiness-check:2.0.2 |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 23 | persistence: |
| 24 | mountPath: /dockerdata-nfs |
| 25 | |
| 26 | ################################################################# |
| 27 | # Application configuration defaults. |
| 28 | ################################################################# |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 29 | repository: nexus3.onap.org:10001 |
seshukm | fb56d71 | 2019-10-14 10:46:52 +0530 | [diff] [blame] | 30 | image: onap/so/catalog-db-adapter:1.5.3 |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 31 | pullPolicy: Always |
| 32 | |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 33 | replicaCount: 1 |
| 34 | minReadySeconds: 10 |
| 35 | containerPort: 8082 |
| 36 | logPath: ./logs/catdb/ |
| 37 | app: catalog-db-adapter |
| 38 | service: |
| 39 | type: ClusterIP |
| 40 | internalPort: 8082 |
| 41 | externalPort: 8082 |
| 42 | portName: so-catdb-port |
| 43 | updateStrategy: |
| 44 | type: RollingUpdate |
| 45 | maxUnavailable: 1 |
| 46 | maxSurge: 1 |
| 47 | # Resource Limit flavor -By Default using small |
| 48 | flavor: small |
| 49 | # Segregation for Different environment (Small and Large) |
| 50 | resources: |
| 51 | small: |
| 52 | limits: |
| 53 | memory: 4Gi |
| 54 | cpu: 2000m |
| 55 | requests: |
| 56 | memory: 1Gi |
| 57 | cpu: 500m |
| 58 | large: |
| 59 | limits: |
| 60 | memory: 8Gi |
| 61 | cpu: 4000m |
| 62 | requests: |
| 63 | memory: 2Gi |
| 64 | cpu: 1000m |
| 65 | unlimited: {} |
| 66 | livenessProbe: |
| 67 | path: /manage/health |
| 68 | port: 8082 |
| 69 | scheme: HTTP |
| 70 | initialDelaySeconds: 600 |
| 71 | periodSeconds: 60 |
| 72 | timeoutSeconds: 10 |
| 73 | successThreshold: 1 |
| 74 | failureThreshold: 3 |
| 75 | ingress: |
| 76 | enabled: false |
Ramesh Parthasarathy | bef9c7b | 2019-03-01 21:21:20 +0000 | [diff] [blame] | 77 | config: |
| 78 | openStackUserName: "vnf_user" |
| 79 | openStackRegion: "RegionOne" |
| 80 | openStackKeyStoneUrl: "http://1.2.3.4:5000/v2.0" |
| 81 | openStackServiceTenantName: "service" |
| 82 | openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e" |
| 83 | openStackTenantId: "d570c718cbc545029f40e50b75eb13df" |
AndrewLamb | 43687c0 | 2019-10-25 10:29:49 +0100 | [diff] [blame] | 84 | openStackProjectDomainName: "openStackProjectDomainName" |
| 85 | openStackUserDomainName: "openStackUserDomainName" |
Sylvain Desbureaux | 04f765e | 2020-02-13 11:08:06 +0100 | [diff] [blame^] | 86 | # "KEYSTONE" for keystone v2, "KEYSTONE_V3" for keystone v3 |
| 87 | openStackKeystoneVersion: "KEYSTONE" |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 88 | nodeSelector: {} |
| 89 | tolerations: [] |
| 90 | affinity: {} |