Commit 4f652622 authored by lavado's avatar lavado
Browse files

Merge branch 'feat/magma_snmp' into 'master'

fix(charts): missing helm charts in vnfd package

See merge request !86
parents df7a21ff 02df0ca9
Loading
Loading
Loading
Loading
+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
+6 −0
Original line number Diff line number Diff line
apiVersion: v1
appVersion: 1.0.0
description: SNMP Exporter for OSM VNF
name: snmpexporter
type: application
version: 1.0.0
+14 −0
Original line number Diff line number Diff line
modules:
  osm-snmp:
    walk: [interfaces]
    lookups:
      - source_indexes: [ifIndex]
        lookup: ifAlias
      - source_indexes: [ifIndex]
        lookup: ifDescr
      - source_indexes: [ifIndex]
        # Use OID to avoid conflict with Netscaler NS-ROOT-MIB.
        lookup: 1.3.6.1.2.1.31.1.1.1.1 # ifName
    auth:
      # Community string is used with SNMP v1 and v2. Defaults to "public".
      community: public
Loading