Install
This page summarizes the installation paths and links to the source documentation.
Prerequisites
- Kubernetes cluster (kind recommended for local)
- Go toolchain and Docker
- kubectl and make
Quick install on kind
shell
kind create cluster --config kind/cluster.yaml
make docker-build IMG=pvc-explorer:dev
kind load docker-image pvc-explorer:dev --name pvc-explorer
make install && make deploy IMG=pvc-explorer:dev
kubectl apply -k config/samples/Open dashboard:
shell
kubectl -n pvc-explorer-system port-forward svc/pvc-explorer-controller-manager 8080:8080Then visit http://localhost:8080
Fast dev loop (out-of-cluster manager)
shell
make install
make runUse Run Local for complete local loops, including UI mock mode.