Adding in support for NAPALM
This commit is contained in:
parent
ae9a3f04a5
commit
ce98ce7d7e
|
@ -19,6 +19,8 @@ RUN apk add --no-cache \
|
|||
RUN pip install \
|
||||
# gunicorn is used for launching netbox
|
||||
gunicorn \
|
||||
# napalm is used for gathering information from network devices
|
||||
napalm \
|
||||
# ruamel is used in startup_scripts
|
||||
ruamel.yaml
|
||||
|
||||
|
|
|
@ -9,7 +9,9 @@ EMAIL_USERNAME=netbox
|
|||
EMAIL_PASSWORD=
|
||||
EMAIL_TIMEOUT=5
|
||||
EMAIL_FROM=netbox@bar.com
|
||||
NAPALM_TIMEOUT=5
|
||||
NAPALM_USERNAME=
|
||||
NAPALM_PASSWORD=
|
||||
NAPALM_TIMEOUT=10
|
||||
MAX_PAGE_SIZE=0
|
||||
SECRET_KEY=r8OwDznj!!dci#P9ghmRfdu1Ysxm0AiPeDCQhKE+N_rClfWNj
|
||||
SUPERUSER_NAME=admin
|
||||
|
|
Loading…
Reference in New Issue