Table of Contents

Flux

Flux is an open-source suite of tools designed to enable continuous and progressive delivery of applications to Kubernetes clusters using a GitOps approach. It allows you to define your desired application state in Git repositories, and Flux automatically ensures that the live state of the Kubernetes cluster matches the desired state.

Key Features

Benefits

Code Examples

1. Defining a GitRepository Custom Resource:

```yaml apiVersion: source.toolkit.fluxcd.io/v1beta2 kind: GitRepository metadata:

 name: my-app
 namespace: flux-system
spec:
 interval: 1m0s
 url: https://github.com/my-org/my-app
 ref:
   branch: main
```

This defines a GitRepository object in Kubernetes, instructing Flux to monitor the 'main' branch of the specified GitHub repository for changes every minute.

2. Defining a Kustomization Custom Resource:

```yaml apiVersion: kustomize.toolkit.fluxcd.io/v1beta2 kind: Kustomization metadata:

 name: my-app
 namespace: flux-system
spec:
 interval: 10m0s
 path: "./deploy/overlays/production"
 prune: true
 sourceRef:
   kind: GitRepository
   name: my-app
```

This Kustomization object tells Flux to apply the Kubernetes manifests found in the 'production' overlay directory of the 'my-app' GitRepository every 10 minutes, also enabling pruning of resources that are no longer defined in Git.

3. Using HelmRelease for Helm Chart Deployments:

```yaml apiVersion: helm.toolkit.fluxcd.io/v2beta1 kind: HelmRelease metadata:

 name: my-app
 namespace: flux-system
spec:
 interval: 5m0s
 chart:
   spec:
     chart: my-app
     version: "1.0.0"
     sourceRef:
       kind: HelmRepository
       name: my-helm-repo
       namespace: flux-system
 values:
   image:
     tag: latest
```

This HelmRelease object instructs Flux to deploy the 'my-app' Helm chart from the specified HelmRepository, using the provided values and checking for updates every 5 minutes.

Additional Resources