- 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.
35 lines
861 B
Text
35 lines
861 B
Text
-- ------------------------------------------------------
|
|
-- TRIPP LITE MIB
|
|
-- Copyright (c) 1999-2018 Tripp Lite
|
|
-- All rights reserved
|
|
--
|
|
-- Revision History:
|
|
-- 06/22/2016 Restructured Tripp Lite MIB files
|
|
-- ------------------------------------------------------
|
|
|
|
-- TrippLite { iso(1) org(3) dod(6) internet(1) private(4) enterprises(1) tripplite(850) }
|
|
|
|
TRIPPLITE DEFINITIONS ::= BEGIN
|
|
|
|
IMPORTS
|
|
MODULE-IDENTITY,
|
|
enterprises
|
|
FROM SNMPv2-SMI;
|
|
|
|
tripplite MODULE-IDENTITY
|
|
LAST-UPDATED "201606221115Z"
|
|
ORGANIZATION "Tripp Lite"
|
|
CONTACT-INFO
|
|
"Software Engineering
|
|
Tripp Lite
|
|
1111 W. 35th St.
|
|
Chicago, IL 60609"
|
|
DESCRIPTION
|
|
"The base MIB module that defines the root objects from Tripp Lite's
|
|
OID tree (850)."
|
|
REVISION "201606221115Z"
|
|
DESCRIPTION
|
|
"Restructured Tripp Lite MIB files"
|
|
::= { enterprises 850 }
|
|
|
|
END
|