# UniFi Network Operator - Helm Installation Guide ## Quick Start ### 1. Install the Helm Chart The simplest way to install the operator: ```bash helm install unifi-network-operator ./helm/unifi-network-operator \ --namespace unifi-network-operator-system \ --create-namespace \ --set unifi.url="https://your-unifi-controller:8443" \ --set unifi.password="your-password" ``` ### 2. Verify Installation ```bash # Check if the operator is running kubectl get pods -n unifi-network-operator-system # Check the operator logs kubectl logs -n unifi-network-operator-system -l app.kubernetes.io/name=unifi-network-operator -f # Verify CRDs are installed kubectl get crds | grep unifi.engen.priv.no ``` ### 3. Create Your First Resource Create a FirewallZone: ```bash cat <