NetBox Operator is Apache 2.0 licensed and accepts contributions via GitHub pull requests.
This document outlines the basics of contributing to NetBox Operator.
There are several ways of deploying the NetBox operator for development.
Note: This requires Docker BuildKit.
- Create kind cluster with a NetBox deployment:
make create-kind
- Deploy the NetBox Operator on the local kind cluster:
make deploy-kind
(In case you're using podman useCONTAINER_TOOL=podman make deploy-kind
)
To optionally access the NetBox UI:
- Port-forward NetBox:
kubectl port-forward deploy/netbox 8080:8080 -n default
- Open http://localhost:8080 in your favorite browser and log in with the username
admin
and passwordadmin
, you will be able to access the local NetBox instance running in the kind cluster.
-
Create kind cluster with a NetBox deployment:
make create-kind
-
Port-forward NetBox:
kubectl port-forward deploy/netbox 8080:8080 -n default
-
Open http://localhost:8080 in your favorite browser and log in with the username
admin
and passwordadmin
, you will be able to access the local NetBox instance running in the kind cluster. -
Open a new terminal window and export the following environment variables:
export NETBOX_HOST="localhost:8080" export AUTH_TOKEN="0123456789abcdef0123456789abcdef01234567" export POD_NAMESPACE="default" export HTTPS_ENABLE="false" export NETBOX_RESTORATION_HASH_FIELD_NAME="netboxOperatorRestorationHash"
-
Run the NetBox Operator locally
make install && make run
Note: This requires a running NetBox instance that you can use (e.g. https://demo.netbox.dev) as well as a kubernetes cluster (can be as simple as kind create cluster
)
-
Prepare NetBox (based on the demo NetBox instance):
- Open https://demo.netbox.dev/plugins/demo/login/ and create any user
- Open https://demo.netbox.dev/user/api-tokens/ and create a token "0123456789abcdef0123456789abcdef01234567" with default settings
- Open https://demo.netbox.dev/extras/custom-fields/add/ and create a custom field called "netboxOperatorRestorationHash" for Object types "IPAM > IP Address" and "IPAM > Prefix"
-
Open a new terminal window and export the following environment variables:
export NETBOX_HOST="demo.netbox.dev" export AUTH_TOKEN="0123456789abcdef0123456789abcdef01234567" export POD_NAMESPACE="default" export HTTPS_ENABLE="true" export NETBOX_RESTORATION_HASH_FIELD_NAME="netboxOperatorRestorationHash"
-
Run the NetBox Operator locally
make install && make run
In the folder config/samples/
you can find example manifests to create IpAddress, IpAddressClaim, Prefix and PrefixClaim resources. Apply them to the cluster with kubectl apply -f <file-name>
and use your favorite Kubernetes tools to display.
Example of assigning a Prefix using PrefixClaim:
- Apply a PrefixClaim:
kubectl apply -f config/samples/netbox_v1_prefixclaim.yaml
- Wait for ready condition:
kubectl wait prefix prefixclaim-sample --for=condition=Ready
- List PrefixClaim and Prefix resources:
kubectl get pxc,px
- In the prefix status fields you’ll be able to see the netbox URL of the resource. Login with the default
admin
/admin
credentials to access the NetBox resources.
Key information can be found in the yaml formatted output of these resources, as well as in the events and Operator logs.
make docker-build docker-push IMG=<some-registry>/netbox-operator:tag
NOTE: This image ought to be published in the personal registry you specified, and it is required to have access to pull the image from the working environment. Make sure you have the proper permission to the registry if the above commands don’t work.
make install
make deploy IMG=<some-registry>/netbox-operator:tag
NOTE: If you encounter RBAC errors, you may need to grant yourself cluster-admin privileges or be logged in as admin.
You can apply the samples (examples) from the config/sample directory:
kubectl apply -k config/samples/
kubectl delete -k config/samples/
make uninstall
make undeploy
Run make help
for more information on all potential make
targets
More information can be found via the Kubebuilder Documentation