Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Export User Token as Environment Variables

Code Block
languagebash
$ export GITHUB_TOKEN=xxxx
$ export GITHUB_USER=johnmehan

...

Perform pre-check to make sure we are able to install flux.

Code Block
languagebash
$ flux check --pre

► checking prerequisites
✗ flux 0.19.1 <0.20.0 (new version is available, please upgrade)
✔ Kubernetes 1.21.2 >=1.19.0-0
✔ prerequisites checks passed


With Github

Code Block
languagebash
$ flux bootstrap github --owner=$GITHUB_USER --repository=<REPO_NAME> --branch=main --path=<CLUSTER_NAME> --personal

# example
$ flux bootstrap github --owner=$GITHUB_USER --repository=ft --branch=main --path=local --personal

...

Git Clone New Repo

Code Block
languagebash
$ git clone git@github.com:johnmehan/ft.git
$ cd ft
$ cd local 

...

Define Helm Repo

Code Block
languagebash
$ flux create source helm ncyd--url https://artifactory-fpark1.int.net.nokia.com/artifactory/ncyd-helm-virtual --interval 1m0s --export >helmrepo-ncyd.yaml

...

Code Block
languageyml
titlehelmrepo-ncyd.yaml
---
apiVersion: source.toolkit.fluxcd.io/v1beta1
kind: HelmRepository
metadata:
  name: ncyd
  namespace: flux-system
spec:
  interval: 1m0s
  url: https://artifactory-fpark1.int.net.nokia.com/artifactory/ncyd-helm-virtual


Code Block
git add <file>
git commit 
git push

Wait a bit and then try


Code Block
$flux get sources helm


References

ReferencesURL
Supercharge your Kubernetes deployments with Flux v2 and GitHub - Introductionhttps://www.youtube.com/watch?v=N6UCKF7JD7k
Get Started with Fluxhttps://fluxcd.io/docs/get-started/
Install the Flux CLIhttps://fluxcd.io/docs/installation/#install-the-flux-cli
flux2-kustomize-helm-examplehttps://github.com/fluxcd/flux2-kustomize-helm-example

...