blob: e8326ad29e210f950531334ac56b4465196ad049 [file] [log] [blame]
aguilarherna4751c622021-03-10 16:27:37 +01001# Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5# http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12
13from pathlib import Path
14
15# Get ${HOME} from local machine
16home = str(Path.home())
17
18# VIM Configuration
19vim_name = 'k8s07_dummy'
20vim_user = 'user'
21vim_password = 'pass'
22vim_auth_url = 'http://localhost/dummy'
23vim_tenant = 'tenant'
24vim_account_type = 'dummy'
25
26# K8s cluster name
27k8scluster_name = 'k8s07'
28k8scluster_version = 'v1'
29k8scluster_net = 'null'
30
31# NS and VNF descriptor package files
32vnfd_pkg = 'openldap_knf'
33nsd_pkg = 'openldap_ns'
34vnfd_name = 'openldap_knf'
35nsd_name = 'openldap_ns'
36
37# NS instance name
38ns_name = 'ldap'
39
40# SSH keys to be used
41publickey = home + '/.ssh/id_rsa.pub'
42privatekey = home + '/.ssh/id_rsa'