| aguilarherna | 4751c62 | 2021-03-10 16:27:37 +0100 | [diff] [blame] | 1 | # 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 | |
| 13 | from pathlib import Path |
| 14 | |
| 15 | # Get ${HOME} from local machine |
| 16 | home = str(Path.home()) |
| 17 | |
| 18 | # VIM Configuration |
| 19 | vim_name = 'k8s07_dummy' |
| 20 | vim_user = 'user' |
| 21 | vim_password = 'pass' |
| 22 | vim_auth_url = 'http://localhost/dummy' |
| 23 | vim_tenant = 'tenant' |
| 24 | vim_account_type = 'dummy' |
| 25 | |
| 26 | # K8s cluster name |
| 27 | k8scluster_name = 'k8s07' |
| 28 | k8scluster_version = 'v1' |
| 29 | k8scluster_net = 'null' |
| 30 | |
| 31 | # NS and VNF descriptor package files |
| 32 | vnfd_pkg = 'openldap_knf' |
| 33 | nsd_pkg = 'openldap_ns' |
| 34 | vnfd_name = 'openldap_knf' |
| 35 | nsd_name = 'openldap_ns' |
| 36 | |
| 37 | # NS instance name |
| 38 | ns_name = 'ldap' |
| 39 | |
| 40 | # SSH keys to be used |
| 41 | publickey = home + '/.ssh/id_rsa.pub' |
| 42 | privatekey = home + '/.ssh/id_rsa' |