c2a224c8db8e484a7721e256376ae2a9895cf11d
[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.2
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    o1mediator:
73     user: test
74     password: test
75     xapp:
76      name: robot-xapp
77      version: 1.0
78  xapp:
79   mcxapp:
80    listener:
81     containername: mc-xapp-listener
82    writer:
83     containername: mc-xapp-writer
84     # statistics sent to ves by the writer.  the tests
85     # will check that these are actually being sent
86     statistics:
87     - mc_connected_cnt
88     - mc_connection_stats
89     - mc_connects_cnt
90     - mc_disconnects_cnt
91     - mc_unique_ue_cnt
92     - rrcx_pdf_serv_cell
93     - rrcx_pdf_serv_gnb
94     - rrcx_stats_serv_cell
95     - rrcx_stats_serv_gnb
96  robot:
97   release: r1
98   #
99   # If specified, a host filesystem
100   # path where robot output will be stored 
101   log: /opt/ric/robot/log
102   #
103   # Active testsuites can be chosen by
104   # tag, testuite names, or both.  leaving
105   # either unspecified will cause all to run.
106   testsuites:
107   # - ricdeployment
108   # - healthcheck
109   tags:
110    enabled:
111    # - etetests
112    # - k8stests
113    disabled:
114    # - intrusive
115    # - artificialdata
116    - UpdateWebPage
117    - e2setup_dash
118    - x2setup_dash
119   #
120   job:
121    # set this to a true value to cause
122    # the job to fail (and, typically, be resubmitted)
123    # when tests fail
124    failOnTestFail: true
125    serviceAccount:
126     # by default, the job will create
127     # a temporary serviceaccount and
128     # role to allow it to access the
129     # xapp and platform namespaces.
130     # to use an existing serviceaccount,
131     # set this to false...
132     create: true
133     # ... and specify the serviceaccount here:
134     # name: nanobot
135   #    
136   environment:
137     # the name of a test xapp; the appmgr testsuite
138     # will attempt to deploy and undeploy this app;
139     # This should be an xapp which is "onboarded" to
140     # the appmgr but not deployed at the time the test
141     # is initiated.
142     xapp: robot-xapp
143     gNodeB:
144      # the details of a test gNodeB, for [E/X]2 tests.
145      # This can be either a real gnodeb or a simulator,
146      # but in either case should exist prior to test
147      # initiation.
148      name: AAAA456789
149      address: 10.0.0.3
150      port: 36421
151     dashboard:
152      address: 10.1.0.1
153      port: 31080