Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +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 |
Sylvain Desbureaux | 1694e1d | 2020-08-21 09:58:25 +0200 | [diff] [blame] | 21 | readinessImage: onap/oom/readiness:3.0.1 |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 22 | persistence: |
| 23 | mountPath: /dockerdata-nfs |
Konrad Bańka | 7bde1d6 | 2020-04-01 16:09:11 +0200 | [diff] [blame] | 24 | #This configuration specifies Service and port for SDNC OAM interface |
| 25 | sdncOamService: sdnc-oam |
| 26 | sdncOamPort: 8282 |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 27 | |
| 28 | ################################################################# |
Krzysztof Opasiak | 5743141 | 2020-03-24 23:18:49 +0100 | [diff] [blame] | 29 | # Secrets metaconfig |
| 30 | ################################################################# |
| 31 | secrets: |
| 32 | - uid: db-user-creds |
| 33 | type: basicAuth |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 34 | externalSecret: '{{ tpl (default "" .Values.db.userCredsExternalSecret) . }}' |
Krzysztof Opasiak | 5743141 | 2020-03-24 23:18:49 +0100 | [diff] [blame] | 35 | login: '{{ .Values.db.userName }}' |
| 36 | password: '{{ .Values.db.userPassword }}' |
| 37 | passwordPolicy: required |
| 38 | - uid: db-admin-creds |
| 39 | type: basicAuth |
Krzysztof Opasiak | c53ff54 | 2020-03-28 02:14:37 +0100 | [diff] [blame] | 40 | externalSecret: '{{ tpl (default "" .Values.db.adminCredsExternalSecret) . }}' |
Krzysztof Opasiak | 5743141 | 2020-03-24 23:18:49 +0100 | [diff] [blame] | 41 | login: '{{ .Values.db.adminName }}' |
| 42 | password: '{{ .Values.db.adminPassword }}' |
| 43 | passwordPolicy: required |
Sylvain Desbureaux | aadf545 | 2020-03-18 18:13:51 +0100 | [diff] [blame] | 44 | - uid: "so-onap-certs" |
| 45 | externalSecret: '{{ tpl (default "" .Values.certSecret) . }}' |
| 46 | type: generic |
| 47 | filePaths: '{{ .Values.secretsFilePaths }}' |
| 48 | |
| 49 | #secretsFilePaths: | |
| 50 | # - 'my file 1' |
| 51 | # - '{{ include "templateThatGeneratesFileName" . }}' |
Krzysztof Opasiak | 5743141 | 2020-03-24 23:18:49 +0100 | [diff] [blame] | 52 | |
| 53 | ################################################################# |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 54 | # Application configuration defaults. |
| 55 | ################################################################# |
| 56 | repository: nexus3.onap.org:10001 |
seshukm | 40ec9fa | 2020-07-08 14:26:34 +0530 | [diff] [blame] | 57 | image: onap/so/sdnc-adapter:1.6.4 |
jmac | c4f04d3 | 2018-10-12 18:24:24 +0000 | [diff] [blame] | 58 | pullPolicy: Always |
| 59 | |
Krzysztof Opasiak | 5743141 | 2020-03-24 23:18:49 +0100 | [diff] [blame] | 60 | db: |
| 61 | userName: so_user |
| 62 | userPassword: so_User123 |
| 63 | # userCredsExternalSecret: some secret |
| 64 | adminName: so_admin |
| 65 | adminPassword: so_Admin123 |
| 66 | # adminCredsExternalSecret: some secret |
| 67 | |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 68 | replicaCount: 1 |
| 69 | minReadySeconds: 10 |
| 70 | containerPort: 8086 |
| 71 | logPath: ./logs/sdnc/ |
| 72 | app: sdnc-adapter |
| 73 | service: |
| 74 | type: ClusterIP |
| 75 | internalPort: 8086 |
Brian Freeman | 1a66793 | 2018-09-06 14:45:37 -0500 | [diff] [blame] | 76 | externalPort: 8086 |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 77 | portName: so-sdnc-port |
| 78 | updateStrategy: |
| 79 | type: RollingUpdate |
| 80 | maxUnavailable: 1 |
| 81 | maxSurge: 1 |
vaibhav16dec | 0da8829 | 2018-08-13 06:10:27 +0000 | [diff] [blame] | 82 | # Resource Limit flavor -By Default using small |
| 83 | flavor: small |
| 84 | # Segregation for Different environment (Small and Large) |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 85 | resources: |
vaibhav16dec | 0da8829 | 2018-08-13 06:10:27 +0000 | [diff] [blame] | 86 | small: |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 87 | limits: |
| 88 | memory: 4Gi |
| 89 | cpu: 2000m |
vaibhav16dec | 0da8829 | 2018-08-13 06:10:27 +0000 | [diff] [blame] | 90 | requests: |
| 91 | memory: 1Gi |
| 92 | cpu: 500m |
| 93 | large: |
| 94 | limits: |
| 95 | memory: 8Gi |
| 96 | cpu: 4000m |
| 97 | requests: |
| 98 | memory: 2Gi |
| 99 | cpu: 1000m |
Mandeep Khinda | 60d36d4 | 2018-09-24 15:15:48 +0000 | [diff] [blame] | 100 | unlimited: {} |
Ramesh Parthasarathy | 3cd3fb1 | 2018-09-05 01:47:29 +0000 | [diff] [blame] | 101 | livenessProbe: |
| 102 | path: /manage/health |
| 103 | port: 8086 |
| 104 | scheme: HTTP |
| 105 | initialDelaySeconds: 600 |
| 106 | periodSeconds: 60 |
| 107 | timeoutSeconds: 10 |
| 108 | successThreshold: 1 |
| 109 | failureThreshold: 3 |
| 110 | ingress: |
| 111 | enabled: false |
| 112 | nodeSelector: {} |
| 113 | tolerations: [] |
Brian Freeman | 1a66793 | 2018-09-06 14:45:37 -0500 | [diff] [blame] | 114 | affinity: {} |