Commit 7b034893 authored by Mark Beierl's avatar Mark Beierl
Browse files

Merge branch 'native-charms' into 'master'

Add native charm packages

See merge request !67
parents 3ae0d83c b8f771ca
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -28,3 +28,6 @@
[submodule "charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/operator"]
	path = charm-packages/k8s_proxy_charm_vnf/charms/simple/mod/operator
	url = https://github.com/canonical/operator
[submodule "charm-packages/native_charm_vnf/charms/simple/mod/operator"]
	path = charm-packages/native_charm_vnf/charms/simple/mod/operator
	url = https://github.com/canonical/operator
+54.6 KiB
Loading image diff...
+39 −0
Original line number Diff line number Diff line
nsd:nsd-catalog:
    nsd:
    -   id: native_charm-ns
        name: native_charm-ns
        short-name: native_charm-ns
        description: NS with 2 VNFs with cloudinit connected by datanet and mgmtnet VLs
        version: '1.0'
        logo: osm.png
        constituent-vnfd:
        -   vnfd-id-ref: native_charm-vnf
            member-vnf-index: '1'
        -   vnfd-id-ref: native_charm-vnf
            member-vnf-index: '2'
        vld:
        -   id: mgmtnet
            name: mgmtnet
            short-name: mgmtnet
            type: ELAN
            mgmt-network: 'true'
            vim-network-name: osm-ext
            vnfd-connection-point-ref:
            -   vnfd-id-ref: native_charm-vnf
                member-vnf-index-ref: '1'
                vnfd-connection-point-ref: vnf-mgmt
            -   vnfd-id-ref: native_charm-vnf
                member-vnf-index-ref: '2'
                vnfd-connection-point-ref: vnf-mgmt
        -   id: datanet
            name: datanet
            short-name: datanet
            type: ELAN
            vnfd-connection-point-ref:
            -   vnfd-id-ref: native_charm-vnf
                member-vnf-index-ref: '1'
                vnfd-connection-point-ref: vnf-data
            -   vnfd-id-ref: native_charm-vnf
                member-vnf-index-ref: '2'
                vnfd-connection-point-ref: vnf-data
+25 −0
Original line number Diff line number Diff line
##
# Copyright 2020 Canonical Ltd.
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
##
touch:
  description: "Touch a file on the VNF."
  params:
    filename:
      description: "The name of the file to touch."
      type: string
      default: ""
  required:
    - filename
+17 −0
Original line number Diff line number Diff line
##
# Copyright 2020 Canonical Ltd.
# All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
#         http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
##
options: {}
 No newline at end of file
Loading