Alpha Preview·Documentation in progress
Keyboard Shortcuts
Navigation
JNext heading
KPrevious heading
GGScroll to top
ShiftGScroll to bottom
NNext page
PPrevious page
Page
?Open keyboard shortcuts
EscClose modal
Skip to content

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:8080

Then visit http://localhost:8080

Fast dev loop (out-of-cluster manager)

shell
make install
make run

Use Run Local for complete local loops, including UI mock mode.

Full source guide

Apache 2.0 licensed. Built with the Kubebuilder framework.