Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.36 KB

04-Bootstrapping-Flux-Fleet.md

File metadata and controls

36 lines (27 loc) · 1.36 KB

Bootstrapping Flux Fleet with a Sample Tenant

We're going to start by forking a base template for the Flux Fleet. Go ahead and fork flux-fleet to your own workspace here.

This repo will be used as the base for the new bootstraped project:

flux bootstrap github --owner=${GITHUB_USER} \
  --repository=flux-fleet \
  --branch=main \
  --path=./clusters/staging \
  --personal \
  --log-level=debug \
  --network-policy=false

flux check

Now you should be able to see the next resources available:

$ flux get all
NAME                            READY   MESSAGE                                 REVISION        SUSPENDED
gitrepository/flux-system       True    Fetched revision: deploy/a432b3c        deploy/a432b3c  False

NAME                            READY   MESSAGE                                 REVISION        SUSPENDED
kustomization/flux-system       True    Applied revision: deploy/a432b3c        deploy/a432b3c  False
kustomization/projects          True    Applied revision: deploy/a432b3c        deploy/a432b3c  False

Here the interesting part to note is the kustomization/projects will will enable us to onboard projects at will in the next steps.


Next: Initializing the Instavote Deploy Repository