- Remove PVC volume mount from k8s/deployment.yaml - Delete k8s/mib-pvc.yaml (no longer needed) - Update .gitignore to commit MIB files to git - Add mix import_mibs task to copy MIBs from LibreNMS - Add all MIB files from priv/mibs/ to git This fixes the multi-attach volume error in Kubernetes where new pods couldn't start because the RWO (ReadWriteOnce) PVC was attached to the old pod. MIBs are now part of the Docker image and can be used by all pods simultaneously.
61 lines
1.3 KiB
Text
61 lines
1.3 KiB
Text
-- SUPERMICRO-SMI.mib: Super Micro Enterprise Structure of Management Information
|
|
--
|
|
-- October 1995, Software LAB
|
|
--
|
|
-- Copyright (c) 1993-2019 Super Micro Computer, Inc.
|
|
-- All rights reserved.
|
|
--
|
|
-- *****************************************************************
|
|
--
|
|
|
|
SUPERMICRO-SMI DEFINITIONS ::= BEGIN
|
|
|
|
IMPORTS
|
|
MODULE-IDENTITY,
|
|
OBJECT-IDENTITY,
|
|
enterprises
|
|
FROM SNMPv2-SMI;
|
|
|
|
supermicro MODULE-IDENTITY
|
|
LAST-UPDATED "200110260000Z"
|
|
ORGANIZATION "Super Micro Computer Inc."
|
|
CONTACT-INFO
|
|
" Software Lab
|
|
|
|
Postal: 980 Rock Avenue
|
|
San Jose, CA 95131
|
|
USA
|
|
|
|
Tel: +1 408 503 8000
|
|
|
|
E-mail: SoftLab@supermicro.com"
|
|
DESCRIPTION
|
|
"The Structure of Management Information for the
|
|
Super Micro enterprise."
|
|
REVISION "200110260000Z"
|
|
DESCRIPTION
|
|
"Initial version of this MIB module."
|
|
::= { enterprises 10876 } -- assigned by IANA
|
|
|
|
|
|
smProducts OBJECT-IDENTITY
|
|
STATUS current
|
|
DESCRIPTION
|
|
"smProducts is the root OBJECT IDENTIFIER from
|
|
which sysObjectID values are assigned. Actual
|
|
values are defined in SUPERMICRO-PRODUCTS-MIB."
|
|
::= { supermicro 1 }
|
|
|
|
smHealth OBJECT-IDENTITY
|
|
STATUS current
|
|
DESCRIPTION
|
|
"smHealth is the main subtree for new mib development."
|
|
::= { supermicro 2 }
|
|
|
|
smSSMInfo OBJECT-IDENTITY
|
|
STATUS current
|
|
DESCRIPTION
|
|
"smSSMInfo is the main subtree for ssm mib development."
|
|
::= { supermicro 100 }
|
|
|
|
END
|