blob: 4e875f3798101716a5a7e27e8c10645374d2fb1a [file] [log] [blame]
Zack Williams3432b942018-04-24 17:46:41 -07001---
Gopinath Tagetb6a79b12018-03-08 17:27:37 -08002# Copyright 2017-present Open Networking Foundation
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
Zack Williams3432b942018-04-24 17:46:41 -070016# Docker images
17# YAML variable names can't contain `-`, so substituted with `_`
Zack Williamsd9d6b352018-10-05 07:53:30 -070018images:
19 xos_core:
20 repository: 'xosproject/xos-core'
21 tag: '{{ .Chart.AppVersion }}'
22 pullPolicy: 'Always'
23
24 xos_chameleon:
25 repository: 'xosproject/chameleon'
Daniele Moro55185102020-03-27 19:16:22 +010026 tag: '4.0.0'
Zack Williamsd9d6b352018-10-05 07:53:30 -070027 pullPolicy: 'Always'
28
29 xos_tosca:
Matteo Scandolo6f8d36e2019-01-24 15:42:43 -080030 repository: 'xosproject/xos-tosca'
Daniele Moro55185102020-03-27 19:16:22 +010031 tag: '2.0.0'
Zack Williamsd9d6b352018-10-05 07:53:30 -070032 pullPolicy: 'Always'
33
34 xos_api_tester:
35 repository: 'xosproject/xos-api-tester'
36 tag: 'master'
37 pullPolicy: 'Always'
38
39global:
40 registry: ""
Gopinath Taget9b609e02018-03-07 16:02:50 -080041
Zack Williams89998822018-11-19 14:54:13 -070042loglevel: "DEBUG"
43
Zack Williams3432b942018-04-24 17:46:41 -070044# NodePorts
Zack Williams3432b942018-04-24 17:46:41 -070045xos_chameleonNodePort: 30006
46xos_toscaNodePort: 30007
Matteo Scandoloe7610092018-10-03 15:53:07 -070047xos_prometheusNodePort: 30009
Scott Baker1c2e2d32018-10-30 15:41:16 -070048xos_core_gRPCSecureNodePort: 30010
49xos_core_gRPCInsecureNodePort: 30011
Andy Baviera02cd962018-04-09 17:07:22 -070050
Matteo Scandolo46bcfd32018-12-17 10:51:38 -080051# kafka
52platformKafka: cord-kafka:9092
53
Zack Williams3432b942018-04-24 17:46:41 -070054# XOS Admin username/password
55xosAdminUser: 'admin@opencord.org'
56xosAdminPassword: 'letmein'
57xosAdminFirstname: 'XOS'
58xosAdminLastname: 'Admin'
Andy Bavier3e262f22018-03-22 12:24:41 -070059
Zack Williams3432b942018-04-24 17:46:41 -070060# CORD site names
Andy Bavierc0aa0b92018-04-23 11:28:38 -070061cordSiteName: mysite
Gopinath Tagetafb2d992018-03-09 17:54:54 -080062
Zack Williams9a6b91e2018-07-28 19:57:01 -070063# Database name/username/password for XOS and the xos-db subchart
Zack Williams3432b942018-04-24 17:46:41 -070064xosDBName: 'xos'
65xosDBUser: 'postgres'
66xosDBPassword: 'password'
Andy Bavier3e262f22018-03-22 12:24:41 -070067
Zack Williams9a6b91e2018-07-28 19:57:01 -070068xos-db:
69 xosDBName: 'xos'
70 xosDBUser: 'postgres'
71 xosDBPassword: 'password'