startechnica / apps

Community apps catalog for Kubernetes
Apache License 2.0
5 stars 5 forks source link

How to add / install a netbox plugin #62

Open Seji64 opened 3 months ago

Seji64 commented 3 months ago

Hello,

thanks for the netbox helm chart.

How can i add / install a netbox plugin? Specifying it via plugins is not sufficent.

lg0killer commented 1 week ago

You can create your own image and do image.registry, image.repository and image.tag as well as the worker.image.registry, worker.image.repository and worket.image.tag overwrites

We personally have an image similar to this:

FROM netboxcommunity/netbox:v4.0.5

RUN echo "netbox_qrcode" >> local_requirements.txt && \
    echo "netbox-inventory" >> local_requirements.txt

RUN . /opt/netbox/venv/bin/activate && \
    pip install -r local_requirements.txt