- 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.
29 lines
767 B
Text
29 lines
767 B
Text
-- *****************************************************************
|
|
-- Transition Networks Security AAA MIB
|
|
--
|
|
-- Copyright (C) 2012 Transition Networks, Inc. All Rights Reserved.
|
|
-- *****************************************************************
|
|
|
|
TN-SECURITY-SWITCH-SSH-MIB DEFINITIONS ::= BEGIN
|
|
|
|
IMPORTS
|
|
DisplayString, TruthValue
|
|
FROM SNMPv2-TC
|
|
tnDevMgmt
|
|
FROM TN-MGMT-MIB;
|
|
|
|
tnSecuritySwitchSSHMIB OBJECT IDENTIFIER ::= { tnDevMgmt 40 }
|
|
|
|
--
|
|
-- Mib variables
|
|
--
|
|
|
|
tnSSHModeEnable OBJECT-TYPE
|
|
SYNTAX TruthValue
|
|
MAX-ACCESS read-write
|
|
STATUS current
|
|
DESCRIPTION "To enable or disable SSH configuration."
|
|
DEFVAL { false }
|
|
::= { tnSecuritySwitchSSHMIB 1 }
|
|
|
|
END
|