- 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.
14 lines
537 B
Text
14 lines
537 B
Text
ALGSMXS-v0-MIB DEFINITIONS ::= BEGIN
|
|
IMPORTS
|
|
DisplayString FROM RFC1213-MIB
|
|
OBJECT-TYPE FROM RFC-1212
|
|
enterprises FROM RFC1155-SMI;
|
|
algcom OBJECT IDENTIFIER ::= { enterprises 49136 }
|
|
SMxSOIDs OBJECT IDENTIFIER ::= { algcom 100 }
|
|
SensorNames OBJECT IDENTIFIER ::= { SMxSOIDs 1 }
|
|
SensorDescriptions OBJECT IDENTIFIER ::= { SMxSOIDs 2 }
|
|
SensorValues OBJECT IDENTIFIER ::= { SMxSOIDs 3 }
|
|
SensorUnits OBJECT IDENTIFIER ::= { SMxSOIDs 4 }
|
|
SensorThrMin OBJECT IDENTIFIER ::= { SMxSOIDs 5 }
|
|
SensorThrMax OBJECT IDENTIFIER ::= { SMxSOIDs 6 }
|
|
END
|