Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 1 | # Copyright (c) 2019 Intel Corporation. |
| 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 | nodePortPrefixExt: 304 |
efiacor | c8c3316 | 2022-11-25 11:36:52 +0000 | [diff] [blame] | 20 | artifactImage: onap/multicloud/framework-artifactbroker:1.9.0 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 21 | |
| 22 | ################################################################# |
| 23 | # Application configuration defaults. |
| 24 | ################################################################# |
| 25 | # application image |
| 26 | repository: nexus3.onap.org:10001 |
Bin Yang | df4fc03 | 2022-03-22 16:08:22 +0800 | [diff] [blame] | 27 | image: onap/multicloud/openstack-starlingx:1.5.7 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 28 | pullPolicy: Always |
| 29 | |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 30 | # application configuration |
| 31 | config: |
| 32 | msbgateway: msb-iag |
Andreas Geissler | 718fb74 | 2023-03-09 09:44:02 +0100 | [diff] [blame] | 33 | msbPort: 80 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 34 | aai: |
Andreas Geissler | 718fb74 | 2023-03-09 09:44:02 +0100 | [diff] [blame] | 35 | aaiPort: 80 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 36 | schemaVersion: v13 |
| 37 | username: AAI |
| 38 | password: AAI |
| 39 | |
| 40 | # default number of instances |
| 41 | replicaCount: 1 |
| 42 | |
| 43 | nodeSelector: {} |
| 44 | |
| 45 | affinity: {} |
| 46 | |
| 47 | # probe configuration parameters |
| 48 | liveness: |
| 49 | initialDelaySeconds: 30 |
| 50 | periodSeconds: 10 |
| 51 | timeoutSeconds: 10 |
| 52 | successThreshold: 1 |
| 53 | failureThreshold: 5 |
| 54 | enabled: true |
| 55 | |
| 56 | service: |
Andreas Geissler | 718fb74 | 2023-03-09 09:44:02 +0100 | [diff] [blame] | 57 | type: NodePort |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 58 | internalPort: 9009 |
Andreas Geissler | 718fb74 | 2023-03-09 09:44:02 +0100 | [diff] [blame] | 59 | ports: |
| 60 | - name: http |
| 61 | port: 9009 |
| 62 | nodePort: '85' |
Andreas Geissler | aeb99f4 | 2023-06-28 10:29:00 +0200 | [diff] [blame] | 63 | useNodePortExt: true |
Andreas Geissler | 718fb74 | 2023-03-09 09:44:02 +0100 | [diff] [blame] | 64 | annotations: |
| 65 | msb.onap.org/service-info: | |
| 66 | {{ if .Values.global.msbEnabled -}}[ |
| 67 | { |
| 68 | "serviceName": "multicloud-starlingx", |
| 69 | "version": "v0", |
| 70 | "url": "/api/multicloud-starlingx/v0", |
| 71 | "protocol": "REST", |
| 72 | "port": "{{ .Values.service.internalPort }}", |
| 73 | "enable_ssl": false, |
| 74 | "visualRange": "1" |
| 75 | }, |
| 76 | { |
| 77 | "serviceName": "multicloud-starlingx", |
| 78 | "version": "v1", |
| 79 | "url": "/api/multicloud-starlingx/v1", |
| 80 | "protocol": "REST", |
| 81 | "port": "{{ .Values.service.internalPort }}", |
| 82 | "enable_ssl": false, |
| 83 | "visualRange": "1" |
| 84 | } |
| 85 | ]{{ end }} |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 86 | |
| 87 | ingress: |
| 88 | enabled: false |
Andreas Geissler | 718fb74 | 2023-03-09 09:44:02 +0100 | [diff] [blame] | 89 | service: |
| 90 | - baseaddr: 'multicloud-starlingx-api' |
| 91 | name: 'multicloud-starlingx' |
| 92 | port: 9009 |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 93 | |
| 94 | # Resource Limit flavor -By Default using small |
| 95 | flavor: small |
| 96 | # Segregation for Different environment (Small and Large) |
| 97 | resources: |
| 98 | small: |
| 99 | limits: |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 100 | cpu: "1" |
| 101 | memory: "4Gi" |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 102 | requests: |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 103 | cpu: "10m" |
| 104 | memory: "1Gi" |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 105 | large: |
| 106 | limits: |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 107 | cpu: "2" |
| 108 | memory: "8Gi" |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 109 | requests: |
Andreas Geissler | 4753743 | 2024-02-27 08:55:23 +0100 | [diff] [blame] | 110 | cpu: "20m" |
| 111 | memory: "2Gi" |
Haibin Huang | 110eabe | 2019-01-24 11:14:38 +0800 | [diff] [blame] | 112 | unlimited: {} |
farida azmy | 7251355 | 2021-10-12 18:55:21 +0200 | [diff] [blame] | 113 | |
Bin Yang | df4fc03 | 2022-03-22 16:08:22 +0800 | [diff] [blame] | 114 | # memcached image resource |
| 115 | memcached: memcached:alpine3.15 |
| 116 | |
farida azmy | 7251355 | 2021-10-12 18:55:21 +0200 | [diff] [blame] | 117 | #Pods Service Account |
| 118 | serviceAccount: |
| 119 | nameOverride: multicloud-starlingx |
| 120 | roles: |
| 121 | - read |
Maciej Wereski | 989c91c | 2021-11-17 16:45:14 +0100 | [diff] [blame] | 122 | |
| 123 | #Log configuration |
| 124 | log: |
| 125 | path: /var/log/onap |
| 126 | logConfigMapNamePrefix: '{{ include "common.fullname" . }}' |