Commit e2de0aa9 authored by lavado's avatar lavado
Browse files

packages for snmp collection tests

parent 8ab76d24
Loading
Loading
Loading
Loading
+40 −0
Original line number Diff line number Diff line
nsd-catalog:
    nsd:
        - id: snmp_ee-ns
          name: snmp_ee-ns
          short-name: snmp_ee-ns
          description: Single VyOS Router VNF with SNMP metrics
          version: "1.0"
          logo: osm.png
          constituent-vnfd:
              - vnfd-id-ref: snmp_ee-vnf
                member-vnf-index: "VyOS Router"
          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: snmp_ee-vnf
                      member-vnf-index-ref: "VyOS Router"
                      vnfd-connection-point-ref: vnf-mgmt
              - id: internal
                name: internal
                short-name: internal
                type: ELAN
                mgmt-network: true
                vnfd-connection-point-ref:
                    - vnfd-id-ref: snmp_ee-vnf
                      member-vnf-index-ref: "VyOS Router"
                      vnfd-connection-point-ref: vnf-internal
              - id: external
                name: external
                short-name: external
                type: ELAN
                mgmt-network: true
                vnfd-connection-point-ref:
                    - vnfd-id-ref: snmp_ee-vnf
                      member-vnf-index-ref: "VyOS Router"
                      vnfd-connection-point-ref: vnf-external
+23 −0
Original line number Diff line number Diff line
#!/bin/vbash
source /opt/vyatta/etc/functions/script-template
# Interface Config eth0
set interfaces ethernet eth0 address 172.21.250.200/22
set interfaces ethernet eth0 description VyOS-eth0
# Interface Config eth1
set interfaces ethernet eth1 address 10.0.0.1/24
set interfaces ethernet eth1 description VyOS-eth1
# Interface Config eth2
set interfaces ethernet eth2 address 10.1.0.1/24
set interfaces ethernet eth2 description VyOS-eth2
# System config
set system host-name vyos-osmTest
set service ssh listen-address 0.0.0.0
set service ssh port 22
set system login user osm authentication plaintext-password osm2020
# SNMP
set service snmp community public authorization ro
set service snmp location "OSM Labs"
set service snmp contact "glavado@whitestack.com"
# Save
commit
save
+22 −0
Original line number Diff line number Diff line
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
+5 −0
Original line number Diff line number Diff line
apiVersion: v1
appVersion: "1.0"
description: OSM EE helm chart
name: eechart
version: 0.1.0
+23 −0
Original line number Diff line number Diff line
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
 No newline at end of file
Loading