Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 1 | # Copyright © 2018 Orange |
| 2 | # Modifications Copyright © 2018 Amdocs, Bell Canada |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
| 16 | ################################################################# |
| 17 | # Global configuration defaults. |
| 18 | ################################################################# |
| 19 | global: |
| 20 | nodePortPrefixExt: 304 |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 21 | |
| 22 | subChartsOnly: |
| 23 | enabled: true |
| 24 | |
| 25 | # application image |
Dan Timoney | c100dc5 | 2020-11-19 08:08:42 -0500 | [diff] [blame] | 26 | image: onap/ccsdk-cds-ui-server:1.0.3 |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 27 | pullPolicy: Always |
| 28 | |
| 29 | # application configuration |
| 30 | config: |
Nirvan Ramjuttun | 4603e7e | 2019-05-30 14:26:27 -0400 | [diff] [blame] | 31 | app: |
| 32 | action: |
| 33 | deployBlueprint: |
| 34 | grpcEnabled: true |
Nirvan Ramjuttun | e7a4aa7 | 2019-05-07 12:19:50 -0400 | [diff] [blame] | 35 | api: |
| 36 | controller: |
Nirvan Ramjuttun | 4603e7e | 2019-05-30 14:26:27 -0400 | [diff] [blame] | 37 | http: |
Abdelmuhaimen Seaudi | eb727eb | 2019-11-14 15:02:38 +0000 | [diff] [blame] | 38 | baseUrl: http://cds-blueprints-processor-http:8081/api/v1 |
Nirvan Ramjuttun | 4603e7e | 2019-05-30 14:26:27 -0400 | [diff] [blame] | 39 | authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== |
Nirvan Ramjuttun | e7a4aa7 | 2019-05-07 12:19:50 -0400 | [diff] [blame] | 40 | processor: |
Nirvan Ramjuttun | 4603e7e | 2019-05-30 14:26:27 -0400 | [diff] [blame] | 41 | http: |
| 42 | baseUrl: http://cds-blueprints-processor-http:8080/api/v1 |
| 43 | authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== |
| 44 | grpc: |
| 45 | host: cds-blueprints-processor-grpc |
| 46 | port: 9111 |
| 47 | authToken: Basic Y2NzZGthcHBzOmNjc2RrYXBwcw== |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 48 | |
| 49 | # default number of instances |
| 50 | replicaCount: 1 |
| 51 | |
| 52 | nodeSelector: {} |
| 53 | |
| 54 | affinity: {} |
| 55 | |
| 56 | # probe configuration parameters |
| 57 | liveness: |
| 58 | httpGet: |
| 59 | path: / |
| 60 | port: 3000 |
| 61 | initialDelaySeconds: 30 |
| 62 | periodSeconds: 10 |
| 63 | # necessary to disable liveness probe when setting breakpoints |
| 64 | # in debugger so K8s doesn't restart unresponsive container |
| 65 | enabled: true |
| 66 | |
| 67 | readiness: |
| 68 | httpGet: |
| 69 | path: /ping |
| 70 | port: 3000 |
| 71 | initialDelaySeconds: 30 |
| 72 | periodSeconds: 10 |
| 73 | |
| 74 | service: |
| 75 | type: NodePort |
Nirvan Ramjuttun | e7a4aa7 | 2019-05-07 12:19:50 -0400 | [diff] [blame] | 76 | portName: cds-ui |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 77 | name: cds-ui |
| 78 | nodePort: 97 |
| 79 | internalPort: 3000 |
| 80 | |
| 81 | ingress: |
| 82 | enabled: false |
Lucjan Bryndza | 33315d4 | 2019-11-27 14:07:58 +0100 | [diff] [blame] | 83 | service: |
| 84 | - baseaddr: "cdsui" |
| 85 | name: "cds-ui" |
Sylvain Desbureaux | e2e9f07 | 2020-05-06 15:19:52 +0200 | [diff] [blame] | 86 | port: 3000 |
| 87 | config: |
| 88 | ssl: "redirect" |
Lucjan Bryndza | 33315d4 | 2019-11-27 14:07:58 +0100 | [diff] [blame] | 89 | |
Alexis de Talhouët | 108e28f | 2019-04-14 18:54:56 -0400 | [diff] [blame] | 90 | # Resource Limit flavor -By Default using small |
| 91 | flavor: small |
| 92 | # Segregation for Different environment (Small and Large) |
| 93 | resources: |
| 94 | small: |
| 95 | limits: |
| 96 | cpu: 1 |
| 97 | memory: 1Gi |
| 98 | requests: |
| 99 | cpu: 10m |
| 100 | memory: 100Mi |
| 101 | large: |
| 102 | limits: |
| 103 | cpu: 2 |
| 104 | memory: 2Gi |
| 105 | requests: |
| 106 | cpu: 200m |
| 107 | memory: 200Mi |
| 108 | unlimited: {} |