Versions Compared

Key

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

Table of Contents

Overview

Install Flux

See https://fluxcd.io/docs/installation/#install-the-flux-cli


Linux/Mac

Code Block
$ curl -s https://fluxcd.io/install.sh | sudo bash
or 
$ curl -s https://fluxcd.io/install.sh | bash


Generate a User Token in GitHub

https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token


Export User Token as Environment Variables

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


Bootstrap the Repository

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


With Gitlab 

Code Block
$ flux bootstrap gitlab --owner=<GROUP> --repository=<REPO_NAME> --path=<PATH> --token-auth --hostname=<HOST> --branch=<BRANCH>

#example
$ flux bootstrap gitlab --owner=MyGroup --repository=deploy_repo --path=cluster/lab --token-auth --hostname=gitlab1.company.com --branch=master



Git Clone New Repo

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


Create Helm Repository

Create secret for flux to use to talk to the helm repository

Code Block
languagebash
$ kubectl create secret generic acr --from-literal username=mehan --from-literal "password=xxx" -n flux-system


Create a helm repo

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


View Repo

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


Commit the newly created file.

Code Block
$ git add <file>
$ git commit 
$ git push


Wait a bit and then try retrieving your list of helm sources:

Code Block
languagebash
$ flux get sources helm

NAME    READY   MESSAGE                                                         REVISION                                       SUSPENDED
ncyd    True    Fetched revision: 732d32e292bd0def8d5782211f139523d23880a1      732d32e292bd0def8d5782211f139523d23880a1       False



Create a Helm Release


Code Block
languagebash
$ flux create helmrelease ssh-server --source=HelmRepository/ncyd-helm-virtual --chart ssh-server --release-name ssh-server --target-namespace default --interval 5m0s --export > helmrelease-ssh-server.yaml

You may want to update this helm release to override certain values


Code Block
languagebash
$ vi helmrelease-ssh-server.yaml
Code Block
languageyml
---
apiVersion: helm.toolkit.fluxcd.io/v2beta1
kind: HelmRelease
metadata:
  name: ssh-server
  namespace: flux-system
spec:
  chart:
    spec:
      chart: ssh-server
      version: '1.0.0-1362206'
      sourceRef:
        kind: HelmRepository
        name: ncyd-helm-virtual
  interval: 5m0s
  releaseName: ssh-server
  targetNamespace: default
  values:
    some: true


Now, commit this file to your git and wait a little bit before executing the following command:

Code Block
languagebash
$ flux get helmreleases


To force a reconciliation, you can issue the following command:

Code Block
flux reconcile ks flux-system --with-source


Helpfull Commands


CommandDescription
flux uninstallRemove flux installation

flux get helmreleases

flux get hr

List the helmreleases
flux reconcile ks flux-system --with-sourceForce a reconcile
flux get sources helmView Helm Sources




kubectl describe helmrelease <HR_NAME> -n flux-systemGet details of a helm release. 
kubectl logs -f -n flux-system deployment/source-controllerSee logs for source-controller


Debugging a Failed Helm Release

You may some of the following commands in order to determine the failure.

Code Block
languagebash
# get list of helmreleases
$ flux get hr -A

# get details about the helmrelease
$ kubectl describe helmrelease <HR_NAME> -n flux-system

# See logs in source controller
$ kubectl logs -f -n flux-system deployment/source-controller


Force a reconcile

Code Block
flux reconcile ks flux-system --with-source


Delete a helm release and reconcile

Code Block
kubectl -n fluxsystem delete hr <HR_NAME>
flux reconcile ks flux-system --with-source



References

ReferencesURL
Flux2 Docshttps://fluxcd.io/docs/
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