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

Update Flux to v2.3.0 #84

Merged
merged 3 commits into from
May 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# flux-aio

[![flux](https://img.shields.io/badge/flux-v2.2.3-9cf)](https://fluxcd.io)
[![flux](https://img.shields.io/badge/flux-v2.3.0-9cf)](https://fluxcd.io)
[![test](https://github.com/stefanprodan/flux-aio/workflows/test/badge.svg)](https://github.com/stefanprodan/flux-aio/actions)
[![license](https://img.shields.io/github/license/stefanprodan/flux-aio.svg)](https://github.com/stefanprodan/flux-aio/blob/main/LICENSE)
[![release](https://img.shields.io/github/release/stefanprodan/flux-aio/all.svg)](https://github.com/stefanprodan/flux-aio/releases)
Expand All @@ -18,7 +18,7 @@ This distribution is optimized for running [Flux](https://fluxcd.io) on:
- Serverless clusters for cost optimisation (EKS Fargate)

The versioning of this distribution follows semver with the following format:
`<flux version>-<distribution release number>`, e.g. `2.2.3-0`.
`<flux version>-<distribution release number>`, e.g. `2.3.0-0`.

## Documentation

Expand Down
48 changes: 33 additions & 15 deletions modules/flux-aio/debug_values.cue
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ package main
// Eval example:
// cue -t debug -t name=flux -t namespace=flux-system -t mv=2.0.0 -t kv=1.28.0 eval -c -e timoni.instance.objects.deployment
values: {
version: "v2.2.3"
version: "v2.3.0"
controllers: {
source: {
image: {
repository: "ghcr.io/fluxcd/source-controller"
tag: "v1.2.4"
tag: "v1.3.0"
digest: ""
}
resources: {
Expand All @@ -20,25 +20,43 @@ values: {
memory: "128Mi"
}
limits: {
cpu: "1500m"
cpu: "1000m"
memory: "1Gi"
}
}
}
kustomize: image: {
repository: "ghcr.io/fluxcd/kustomize-controller"
tag: "v1.2.2"
digest: ""
kustomize: {
image: {
repository: "ghcr.io/fluxcd/kustomize-controller"
tag: "v1.3.0"
digest: ""
}
resources: limits: {
cpu: "2000m"
memory: "1Gi"
}
}
notification: image: {
repository: "ghcr.io/fluxcd/notification-controller"
tag: "v1.2.4"
digest: ""
notification: {
image: {
repository: "ghcr.io/fluxcd/notification-controller"
tag: "v1.3.0"
digest: ""
}
resources: limits: {
cpu: "1000m"
memory: "500Mi"
}
}
helm: image: {
repository: "ghcr.io/fluxcd/helm-controller"
tag: "v0.37.4"
digest: ""
helm: {
image: {
repository: "ghcr.io/fluxcd/helm-controller"
tag: "v1.0.1"
digest: ""
}
resources: limits: {
cpu: "2000m"
memory: "1Gi"
}
}
}
workload: {
Expand Down
Loading
Loading