blob: 7a91f2e622d07cb23db86ab9365eb2a6b4f77544 [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'
calvinosanc1a352a932020-07-21 16:03:46 +020023# NSD and VNFD names in OSM
24vnfd_name1 = 'nscharm-policy-vnf'
25vnfd_name2 = 'nscharm-user-vnf'
26nsd_name = 'nscharm-ns'
27# NS Descriptor file
David Garcia930c39d2020-12-15 16:51:05 +010028nsd_file = 'nscharm_nsd.yaml'
calvinosanc1a352a932020-07-21 16:03:46 +020029# NS instance name
30ns_name = 'test_nscharm'
31# SSH keys to be used
32publickey = home + '/.ssh/id_rsa.pub'
33privatekey = home + '/.ssh/id_rsa'
34# Juju variables
David Garcia930c39d2020-12-15 16:51:05 +010035old_juju_password = 'a5611fc6452349cc6e45705d34c501d4'