78f622e869ac410174ef18aff4645b5c90dfa7c9
[it/test.git] / ric_robot_suite / helm / nanobot / values.yaml
1 #   Copyright (c) 2019 AT&T Intellectual Property.
2 #   Copyright (c) 2019 Nokia.
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 # configuration for this chart is split between this file and the "recipe"
18 # used by the ric-common chart.  For the most part, platform configuration
19 # is defined by that recipe, and robot configuration is here.
20 #
21
22 images:
23  ric:
24   robot:
25    job:
26     init:
27      name: alpine
28      # tag: latest
29     run:
30      repository: nexus3.o-ran-sc.org:10004
31      name: o-ran-sc/it-test-nanobot
32      tag: 0.0.1
33      # note: the helm chart does not create repository credential secrets.
34      # If your repository requires authentication, create a docker-registry 
35      # secret with
36      #
37      #   kubectl create secret docker-registry --namespace <robot-job-namespace> ...
38      #
39      # and fill in secret-name below.  Only one secret should be created per
40      # registry. The chart will take care of producing a unique  list of
41      # imagePullSecrets.
42      repositoryCred: o-ran-registry-secret
43 ric:
44  cluster:
45   # The kubernetes cluster name.  To find this, do:
46   # $ grep cluster: ${KUBECONFIG}
47   name: kubernetes
48   # the DNS domain for k8s services, typically "cluster.local"
49   domain: cluster.local
50  platform:
51   # RIC installation details.  The values
52   # for these can typically be found in
53   # the ricplt/ric_env.sh file from the ric
54   # platform source tree
55   releaseName: r0
56   components:
57    a1mediator:
58     xappName: robot-xapp
59     policyID: "6266268"
60    appmgr:
61     user: test
62     password: test
63    dbaas:
64    e2mgr:
65     user: test
66     password: test
67    e2term:
68    rtmgr:
69     user: test
70     password: test
71    submgr:
72  xapp:
73   mcxapp:
74    listener:
75     containername: mc-xapp-listener
76    writer:
77     containername: mc-xapp-writer
78     # statistics sent to ves by the writer.  the tests
79     # will check that these are actually being sent
80     statistics:
81     - mc_connected_cnt
82     - mc_connection_stats
83     - mc_connects_cnt
84     - mc_disconnects_cnt
85     - mc_unique_ue_cnt
86     - rrcx_pdf_serv_cell
87     - rrcx_pdf_serv_gnb
88     - rrcx_stats_serv_cell
89     - rrcx_stats_serv_gnb
90  robot:
91   release: r1
92   #
93   # If specified, a host filesystem
94   # path where robot output will be stored 
95   # log: /opt/ric/robot/log
96   #
97   # Active testsuites can be chosen by
98   # tag, testuite names, or both.  leaving
99   # either unspecified will cause all to run.
100   testsuites:
101   # - ricdeployment
102   # - healthcheck
103   tags:
104    enabled:
105    # - etetests
106    # - k8stests
107    disabled:
108    # - intrusive
109    # - artificialdata
110    - UpdateWebPage
111    - e2setup_dash
112    - x2setup_dash
113   #
114   job:
115    # set this to a true value to cause
116    # the job to fail (and, typically, be resubmitted)
117    # when tests fail
118    failOnTestFail: true
119    serviceAccount:
120     # by default, the job will create
121     # a temporary serviceaccount and
122     # role to allow it to access the
123     # xapp and platform namespaces.
124     # to use an existing serviceaccount,
125     # set this to false...
126     create: true
127     # ... and specify the serviceaccount here:
128     # name: nanobot
129   #    
130   environment:
131     # the name of a test xapp; the appmgr testsuite
132     # will attempt to deploy and undeploy this app;
133     # This should be an xapp which is "onboarded" to
134     # the appmgr but not deployed at the time the test
135     # is initiated.
136     xapp: robot-xapp
137     gNodeB:
138      # the details of a test gNodeB, for [E/X]2 tests.
139      # This can be either a real gnodeb or a simulator,
140      # but in either case should exist prior to test
141      # initiation.
142      name: AAAA456789
143      address: 10.0.0.3
144      port: 36421
145     dashboard:
146      address: 10.1.0.1
147      port: 31080