Commit 085374dd authored by lavado's avatar lavado
Browse files

Merge branch 'feat/magma_snmp' into 'master'

feat(magma snmp): a few modifications to EEChart and SNMP and adding them to Magma

See merge request !83
parents f45052ac d7b304af
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/
+8 −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
dependencies:
  - name: snmpexporter
    condition: snmpexporter.enabled
+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
+10 −0
Original line number Diff line number Diff line
apiVersion: v1
name: snmpexporter
description: SNMP Exporter for OSM VNF
type: application
version: 1.0.0
appVersion: 1.0.0
dependencies:
  - name: snmp-exporter
    version: "0.17.0"
    repository: "https://hub.docker.com/r/prom/snmp-exporter"
Loading