Build descheduler.
cd $GOPATH/src/sigs.k8s.io
git clone https://github.com/kubernetes-sigs/descheduler.git
cd descheduler
make
Run descheduler.
./_output/bin/descheduler --kubeconfig <path to kubeconfig> --policy-config-file <path-to-policy-file> --v 1
View all CLI options.
./_output/bin/descheduler --help
GOOS=linux make dev-image
kind create cluster --config hack/kind_config.yaml
kind load docker-image <image name>
kind get kubeconfig > /tmp/admin.conf
export KUBECONFIG=/tmp/admin.conf
make test-unit
make test-e2e
Run the helm test for a particular descheduler release by setting below variables,
HELM_IMAGE_REPO="descheduler"
HELM_IMAGE_TAG="helm-test"
HELM_CHART_LOCATION="./charts/descheduler"
The helm tests runs as part of descheduler CI. But, to run it manually from the descheduler root,
make test-helm
If you made some changes in the chart, and just want to check if templating is ok, or if the chart is buildable, you can run this command to have a package built from the ./charts
directory.
make build-helm
To check linting of your changes in the helm chart locally you can run:
make lint-helm
See the hack directory for additional tools and scripts used for developing the descheduler.