towerops/priv/mibs/ibm/IBM-CPS-MIB
Graham McIntire b4f8b40b7f
Include MIB files in Docker image instead of using PVC
- 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.
2026-01-19 14:01:03 -06:00

40 lines
1 KiB
Text

IBM-CPS-MIB DEFINITIONS ::= BEGIN
-- IBM
-- Converged Power Systems
-- Endicott, NY
-- This MIB contains the necessary definitions for
-- Converged Power Systems from IBM.
IMPORTS
enterprises
FROM RFC1155-SMI
TRAP-TYPE
FROM RFC1215
DisplayString
FROM RFC1213-MIB;
ibm OBJECT IDENTIFIER ::= { enterprises 2 }
ibmProd OBJECT IDENTIFIER ::= { ibm 6 }
cps OBJECT IDENTIFIER ::= { ibmProd 201 }
cpsSystemSendTrap OBJECT-TYPE
SYNTAX DisplayString
ACCESS read-only
STATUS optional
DESCRIPTION "This variable contains a textual represenation
of all the trap data."
::= { cps 3 }
problemTrap TRAP-TYPE
ENTERPRISE cps
VARIABLES {
cpsSystemSendTrap
}
DESCRIPTION
"This trap is sent whenever a Problem Log Entry is created."
::= 3
END