Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 640 Bytes

File metadata and controls

36 lines (26 loc) · 640 Bytes

Bootstrap the cluster

Check for the pre-requisites:

flux check --pre

Run the next command to boostrap a cluster.

  • make sure you are running in the right context
flux bootstrap github --owner=${GITHUB_USER} \
  --repository=flux-infra \
  --branch=main \
  --path=./clusters/dev \
  --personal \
  --log-level=debug \
  --network-policy=false \
  --components=source-controller,kustomize-controller

The controllers should be visible at

kubectl get all -n flux-system

Verify the installation

flux check

You can boostrap as many times as you want, as the process is idempotent.