Replies: 1 comment 1 reply
-
The bigger thing that I believe we need to figure out if doing so is how to modify the |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Today with the Nautobot docker image in order to add plugins you need to build a custom docker container. I am curious what people think of adding the ability to add plugins dynamically to the container, perhaps with an env var something like:
My hesitation with adding this feature really comes down to security. Today installing plugins requires a
pip install
of a python package. Enabling an install during runtime especially in a production environment doesn't sit well with me. On the other hand, it would be incredibly useful to have an easy way to install plugins without a custom image.Should we enable this for production or maybe just dev environments and we require another variable
NAUTOBOT_DISCLAIMER="yes I know what I am doing but do it anyway"
type thing to enable this feature. Again concerned a bit about security here if someone were able to set this variable in a prod environment we would basically be enabling installing any package from pypi.Beta Was this translation helpful? Give feedback.
All reactions