blob: 1b92b5af1a475a34be604cfcc54cdb0280e38183 [file] [log] [blame]
calvinosanc1a352a932020-07-21 16:03:46 +02001# Copyright 2020 Canonical Ltd.
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
David Garcia930c39d2020-12-15 16:51:05 +010020vnfd_pkg1 = 'nscharm_policy_vnf'
21vnfd_pkg2 = 'nscharm_user_vnf'
22nsd_pkg = 'nscharm_ns'
aguilarherna4de90962021-04-27 09:44:27 +000023new_nsd_pkg = 'new_nscharm_ns'
calvinosanc1a352a932020-07-21 16:03:46 +020024# NSD and VNFD names in OSM
25vnfd_name1 = 'nscharm-policy-vnf'
26vnfd_name2 = 'nscharm-user-vnf'
27nsd_name = 'nscharm-ns'
28# NS Descriptor file
David Garcia930c39d2020-12-15 16:51:05 +010029nsd_file = 'nscharm_nsd.yaml'
calvinosanc1a352a932020-07-21 16:03:46 +020030# NS instance name
31ns_name = 'test_nscharm'
32# SSH keys to be used
33publickey = home + '/.ssh/id_rsa.pub'
34privatekey = home + '/.ssh/id_rsa'
35# Juju variables
David Garcia930c39d2020-12-15 16:51:05 +010036old_juju_password = 'a5611fc6452349cc6e45705d34c501d4'