256f17ceca5b78a6d467a3b215a06ebd943205d8
[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 images:
17  ric:
18   robot:
19    job:
20     init:
21      name: alpine
22      # tag: latest
23     run:
24      repository: snapshot.docker.ranco-dev-tools.eastus.cloudapp.azure.com:10001
25      name: test/nanobot
26      tag: latest
27      # note: the helm chart does not create repository credential secrets.
28      # If your repository requires authentication, create a docker-registry 
29      # secret with
30      #
31      #   kubectl create secret docker-registry --namespace <robot-job-namespace> ...
32      #
33      # and fill in secret-name below.  Only one secret should be created per
34      # registry. The chart will take care of producing a unique  list of
35      # imagePullSecrets.
36      repositoryCred: azure-secret
37 ric:
38  cluster:
39   # The kubernetes cluster name.  To find this, do:
40   # $ grep cluster: ${KUBECONFIG}
41   name: kubernetes
42   # the DNS domain for k8s services, typically "cluster.local"
43   domain: cluster.local
44  platform:
45   # RIC installation details.  The values
46   # for these can typically be found in
47   # the ricplt/ric_env.sh file from the ric
48   # platform source tree
49   namespace: ricplt
50   releaseName: r0
51   components:
52    appmgr:
53     user: test
54     password: test
55    rtmgr:
56     user: test
57     password: test
58    dbaas:
59     port: "6379"
60    e2mgr:
61     user: test
62     password: test
63    e2term:
64  xapp:
65   namespace: ricxapp
66  robot:
67   #
68   # host filesystem path where robot
69   # output will be stored
70   log: /opt/ric/robot/log
71   #
72   # Active testsuites can be chosen by
73   # tag, testuite names, or both.  leaving
74   # either unspecified will cause all to run.
75   testsuites:
76   # - ricdeployment
77   # - healthcheck
78   tags:
79   # - etetests
80   # - k8stests
81   #
82   job:
83    # set this to a true value to cause
84    # the job to fail (and, typically, be resubmitted)
85    # when tests fail
86    failOnTestFail: false
87    serviceAccount:
88     # by default, the job will create
89     # a temporary serviceaccount and
90     # role to allow it to access the
91     # xapp and platform namespaces.
92     # to use an existing serviceaccount,
93     # set this to false...
94     create: true
95     # ... and specify the serviceaccount here:
96     # name: nanobot
97