- 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.
39 lines
639 B
Text
39 lines
639 B
Text
CONEL-IO-MIB DEFINITIONS ::= BEGIN
|
|
|
|
IMPORTS
|
|
enterprises, Gauge
|
|
FROM RFC1155-SMI
|
|
OBJECT-TYPE
|
|
FROM RFC-1212;
|
|
|
|
conel OBJECT IDENTIFIER ::= { enterprises 30140 }
|
|
|
|
protocols OBJECT IDENTIFIER ::= { conel 2 }
|
|
|
|
io OBJECT IDENTIFIER ::= { protocols 3 }
|
|
|
|
ioBin0 OBJECT-TYPE
|
|
SYNTAX Gauge
|
|
ACCESS read-only
|
|
STATUS current
|
|
::= { io 1 }
|
|
|
|
ioOut0 OBJECT-TYPE
|
|
SYNTAX Gauge
|
|
ACCESS read-write
|
|
STATUS current
|
|
::= { io 2 }
|
|
|
|
ioBin1 OBJECT-TYPE
|
|
SYNTAX Gauge
|
|
ACCESS read-only
|
|
STATUS current
|
|
::= { io 3 }
|
|
|
|
ioOut1 OBJECT-TYPE
|
|
SYNTAX Gauge
|
|
ACCESS read-write
|
|
STATUS current
|
|
::= { io 4 }
|
|
|
|
END
|