aboutsummaryrefslogtreecommitdiffstats
path: root/opera/deploy_vnf.py
blob: b9703a09187e041872c0a21cf90078322e882d25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
##############################################################################
# Copyright (c) 2016-2017 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

import argparse
from openo_connect import create_service


if __name__ == "__main__":

    parser = argparse.ArgumentParser()
    parser.add_argument("--msb_ip", action='store', help="common_services_msb ip")
    parser.add_argument("--vnf", action='store', default='', help="vnf type")
    parser.add_argument("--nsdId", action='store', default='', help="vnf nsdId")

    args = parser.parse_args()
    msb_ip = args.msb_ip
    vnf = args.vnf
    nsdId = args.nsdId

    if vnf == 'clearwater':
        create_service(msb_ip, vnf, vnf, nsdId)