blob: e345f3781e446164cd91d40fb6fd60de94f44234 [file] [log] [blame]
Javier Melian80a16cf2020-05-19 07:39:12 +00001# Copyright 2020 Atos
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15from pathlib import Path
16
17# Get ${HOME} from local machine
18home = str(Path.home())
19# NS and VNF descriptor package files
20vnfd1_pkg = 'slice_hackfest_vnf.tar.gz'
21vnfd2_pkg = 'slice_hackfest_middle_vnfd.tar.gz'
22nsd1_pkg = 'slice_hackfest_ns.tar.gz'
23nsd2_pkg = 'slice_hackfest_middle_nsd.tar.gz'
24nst = 'slice_hackfest_nst.yaml'
25nst2 = 'slice_hackfest2_nst.yaml'
26# Instance names
27slice_name = 'slicehfbasic'
28slice2_name = 'sliceshared'
29middle_ns_name = 'slicehfbasic.slice_hackfest_nsd_2'
30# Descriptor names
31nst_name = 'slice_hackfest_nst'
32nst2_name = 'slice_hackfest2_nst'
33vnfd1_name = 'slice_hackfest_vnfd'
34vnfd2_name = 'slice_hackfest_middle_vnfd'
35nsd1_name = 'slice_hackfest_nsd'
36nsd2_name = 'slice_hackfest_middle_nsd'
37# SSH keys to be used
38publickey = home + '/.ssh/id_rsa.pub'
39privatekey = home + '/.ssh/id_rsa'