Fix Sonobuoy systemd-image for k8 1.18
[validation.git] / bluval / volumes.yaml
1 ##############################################################################
2 # Copyright (c) 2019 AT&T, ENEA AB, Nokia and others                         #
3 #                                                                            #
4 # Licensed under the Apache License, Version 2.0 (the "License");            #
5 # you maynot use this file except in compliance with the License.            #
6 #                                                                            #
7 # You may obtain a copy of the License at                                    #
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, WITHOUT  #
12 # 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 # Full list of volumes that can be mounted to the containers when running the tests.
18 # When adding volumes, add file or dir at the end of the keyword to ease identifying
19 # the type of the volume
20 #
21 # When running the tests, fill in the 'local' sections only for the volumes that are
22 # applicable to your setup
23
24 volumes:
25     # location of the ssh key to access the cluster
26     ssh_key_dir:
27         local: ''
28         target: '/root/.ssh'
29     # location of the k8s access files (config file, certificates, keys)
30     kube_config_dir:
31         local: ''
32         target: '/root/.kube/'
33     # location of the customized variables.yaml
34     custom_variables_file:
35         local: ''
36         target: '/opt/akraino/validation/tests/variables.yaml'
37     # location of the bluval-<blueprint>.yaml file
38     blueprint_dir:
39         local: ''
40         target: '/opt/akraino/validation/bluval'
41     # location on where to store the results on the local jumpserver
42     results_dir:
43         local: ''
44         target: '/opt/akraino/results'
45     # location on where to store openrc file
46     openrc:
47         local: ''
48         target: '/root/openrc'
49
50 # parameters that will be passed to the container at each layer
51 layers:
52     # volumes mounted at all layers; volumes specific for a different layer are below
53     common:
54         - custom_variables_file
55         - blueprint_dir
56         - results_dir
57     hardware:
58         - ssh_key_dir
59     os:
60         - ssh_key_dir
61     networking:
62         - ssh_key_dir
63     docker:
64         - ssh_key_dir
65     k8s:
66         - ssh_key_dir
67         - kube_config_dir
68     k8s_networking:
69         - ssh_key_dir
70         - kube_config_dir
71     openstack:
72         - openrc
73     sds:
74     sdn:
75     vim: