Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(flux-group): update flux2 (minor) #4595

Merged
merged 1 commit into from
Feb 25, 2025
Merged

feat(flux-group): update flux2 (minor) #4595

merged 1 commit into from
Feb 25, 2025

Conversation

tyriis-automation[bot]
Copy link
Contributor

@tyriis-automation tyriis-automation bot commented Feb 20, 2025

This PR contains the following updates:

Package Type Update Change OpenSSF
fluxcd/flux2 Kustomization minor v2.4.0 -> v2.5.1 OpenSSF Scorecard
ghcr.io/fluxcd/flux-manifests digest 456f82f -> 3ad4638

Release Notes

fluxcd/flux2 (fluxcd/flux2)

v2.5.1

Compare Source

Highlights

Flux v2.5.1 is a patch release which comes with various fixes. Users are encouraged to upgrade for the best experience.

Fixes:

  • Fix a bug introduced in kustomize-controller v1.5.0 that was causing spurious logging for deprecated API versions and health check failures.
  • Sanitize the kustomize-controller logs when encountering errors during SOPS decryption.
Components changelog
CLI Changelog

v2.5.0

Compare Source

Highlights

Flux v2.5.0 is a feature release. Users are encouraged to upgrade for the best experience.

For a compressive overview of new features and API changes included in this release,
please refer to the Announcing Flux 2.5 GA blog post.

Overview of the new features:

  • Support for GitHub App authentication (GitRepository and ImageUpdateAutomation API)
  • Custom Health Checks using CEL (Kustomization API)
  • Fine-grained control of garbage collection (Kustomization API)
  • Enable decryption of secrets generated by Kustomize components (Kustomization API)
  • Support for custom event metadata from annotations (Alert API)
  • Git commit status updates for Flux Kustomizations with OCIRepository sources (Alert API)
  • Resource filtering using CEL for webhook receivers (Receiver API)
  • Debug commands for Flux Kustomizations and HelmReleases (Flux CLI)

❤️ Big thanks to all the Flux contributors that helped us with this release!

Kubernetes compatibility

This release is compatible with the following Kubernetes versions:

Kubernetes version Minimum required
v1.30 >= 1.30.0
v1.31 >= 1.31.0
v1.32 >= 1.32.0

[!NOTE]
Note that the Flux project offers support only for the latest three minor versions of Kubernetes.
Backwards compatibility with older versions of Kubernetes and OpenShift is offered by vendors such as
ControlPlane that provide enterprise support for Flux.

OpenShift compatibility

Flux can be installed on Red Hat OpenShift cluster directly from OperatorHub using
Flux Operator.
The operator allows the configuration of Flux multi-tenancy lockdown, network policies,
persistent storage, sharding, vertical scaling and the synchronization
of the cluster state from Git repositories, OCI artifacts and S3-compatible storage.

Upgrade procedure

Upgrade Flux from v2.4.0 to v2.5.0 by following the upgrade guide.

There are no new API versions in this release, so no changes are required in the YAML manifests containing Flux resources.

Components changelog
CLI Changelog

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@tyriis-automation
Copy link
Contributor Author

tyriis-automation bot commented Feb 20, 2025

🦙 MegaLinter status: ✅ SUCCESS

Descriptor Linter Files Fixed Errors Elapsed time
✅ EDITORCONFIG editorconfig-checker 2 0 0.01s
✅ REPOSITORY gitleaks yes no 3.13s
✅ YAML prettier 2 0 0.38s
✅ YAML yamllint 2 0 0.35s

See detailed report in MegaLinter reports
Set VALIDATE_ALL_CODEBASE: true in mega-linter.yml to validate all sources, not only the diff

MegaLinter is graciously provided by OX Security

@tyriis-automation tyriis-automation bot changed the title feat(flux-group): update dependency fluxcd/flux2 ( v2.4.0 → v2.5.0 ) feat(flux-group): update flux2 (minor) Feb 20, 2025
@tyriis-automation
Copy link
Contributor Author

--- kubernetes/base/flux/repositories Kustomization: flux-system/flux-repositories OCIRepository: flux-system/flux-manifests

+++ kubernetes/base/flux/repositories Kustomization: flux-system/flux-repositories OCIRepository: flux-system/flux-manifests

@@ -7,10 +7,10 @@

     kustomize.toolkit.fluxcd.io/namespace: flux-system
   name: flux-manifests
   namespace: flux-system
 spec:
   interval: 1h
   ref:
-    digest: sha256:456f82fce9bce6dbfbca1ad9f21a4c6f33ee0a35c846de1fac4a1b9bcdea98a7
+    digest: sha256:e38a8a95dd6c7806e20433cfdbe36946fbfe196684b790a6a1fc451177b0fa57
     tag: v2.2.1
   url: oci://ghcr.io/fluxcd/flux-manifests
 
--- kubernetes/talos-flux/flux Kustomization: flux-system/flux-sync Deployment: flux-system/source-controller

+++ kubernetes/talos-flux/flux Kustomization: flux-system/flux-sync Deployment: flux-system/source-controller

@@ -53,13 +53,13 @@

               resource: limits.cpu
         - name: GOMEMLIMIT
           valueFrom:
             resourceFieldRef:
               containerName: manager
               resource: limits.memory
-        image: ghcr.io/fluxcd/source-controller:v1.4.1
+        image: ghcr.io/fluxcd/source-controller:v1.5.0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           httpGet:
             path: /healthz
             port: healthz
         name: manager
--- kubernetes/talos-flux/flux Kustomization: flux-system/flux-sync Deployment: flux-system/kustomize-controller

+++ kubernetes/talos-flux/flux Kustomization: flux-system/flux-sync Deployment: flux-system/kustomize-controller

@@ -47,13 +47,13 @@

               resource: limits.cpu
         - name: GOMEMLIMIT
           valueFrom:
             resourceFieldRef:
               containerName: manager
               resource: limits.memory
-        image: ghcr.io/fluxcd/kustomize-controller:v1.4.0
+        image: ghcr.io/fluxcd/kustomize-controller:v1.5.0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           httpGet:
             path: /healthz
             port: healthz
         name: manager
--- kubernetes/talos-flux/flux Kustomization: flux-system/flux-sync Deployment: flux-system/helm-controller

+++ kubernetes/talos-flux/flux Kustomization: flux-system/flux-sync Deployment: flux-system/helm-controller

@@ -50,13 +50,13 @@

               resource: limits.cpu
         - name: GOMEMLIMIT
           valueFrom:
             resourceFieldRef:
               containerName: manager
               resource: limits.memory
-        image: ghcr.io/fluxcd/helm-controller:v1.1.0
+        image: ghcr.io/fluxcd/helm-controller:v1.2.0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           httpGet:
             path: /healthz
             port: healthz
         name: manager
--- kubernetes/talos-flux/flux Kustomization: flux-system/flux-sync Deployment: flux-system/notification-controller

+++ kubernetes/talos-flux/flux Kustomization: flux-system/flux-sync Deployment: flux-system/notification-controller

@@ -42,13 +42,13 @@

               resource: limits.cpu
         - name: GOMEMLIMIT
           valueFrom:
             resourceFieldRef:
               containerName: manager
               resource: limits.memory
-        image: ghcr.io/fluxcd/notification-controller:v1.4.0
+        image: ghcr.io/fluxcd/notification-controller:v1.5.0
         imagePullPolicy: IfNotPresent
         livenessProbe:
           httpGet:
             path: /healthz
             port: healthz
         name: manager

@tyriis-automation tyriis-automation bot force-pushed the renovate/flux2 branch 5 times, most recently from 09cb52b to e69845f Compare February 25, 2025 21:55
@tyriis tyriis merged commit 01c038b into main Feb 25, 2025
16 checks passed
@tyriis tyriis deleted the renovate/flux2 branch February 25, 2025 22:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant