-
-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat!: deploy flux with helm (#8619)
- Loading branch information
Showing
25 changed files
with
202 additions
and
225 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
kubernetes/main/apps/flux-system/addons/app/monitoring/kustomization.yaml
This file was deleted.
Oops, something went wrong.
32 changes: 0 additions & 32 deletions
32
kubernetes/main/apps/flux-system/addons/app/monitoring/podmonitor.yaml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
kubernetes/main/apps/flux-system/addons/app/notifications/kustomization.yaml
This file was deleted.
Oops, something went wrong.
6 changes: 0 additions & 6 deletions
6
kubernetes/main/apps/flux-system/addons/app/webhooks/kustomization.yaml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
69 changes: 69 additions & 0 deletions
69
kubernetes/main/apps/flux-system/flux/app/helm-values.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
--- | ||
helmController: | ||
container: | ||
additionalArgs: | ||
# Increase the number of workers and limits | ||
# Ref: https://fluxcd.io/flux/installation/configuration/vertical-scaling/#increase-the-number-of-workers-and-limits | ||
- --concurrent=10 | ||
- --requeue-dependency=5s | ||
# Flux near OOM detection for Helm | ||
# Ref: https://fluxcd.io/flux/installation/configuration/helm-oom-detection/ | ||
- --feature-gates=OOMWatch=true | ||
- --oom-watch-memory-threshold=95 | ||
- --oom-watch-interval=500ms | ||
resources: | ||
requests: | ||
cpu: 100m | ||
limits: | ||
memory: 2Gi | ||
|
||
imageAutomationController: | ||
create: false | ||
|
||
imageReflectionController: | ||
create: false | ||
|
||
kustomizeController: | ||
container: | ||
additionalArgs: | ||
# Increase the number of workers and limits | ||
# Ref: https://fluxcd.io/flux/installation/configuration/vertical-scaling/#increase-the-number-of-workers-and-limits | ||
- --concurrent=10 | ||
- --requeue-dependency=5s | ||
resources: | ||
requests: | ||
cpu: 100m | ||
limits: | ||
memory: 2Gi | ||
|
||
notificationController: | ||
resources: | ||
requests: | ||
cpu: 100m | ||
limits: | ||
memory: 2Gi | ||
|
||
sourceController: | ||
container: | ||
additionalArgs: | ||
# Enable Helm repositories caching | ||
# Ref: https://fluxcd.io/flux/installation/configuration/vertical-scaling/#enable-helm-repositories-caching | ||
- --helm-cache-max-size=10 | ||
- --helm-cache-ttl=60m | ||
- --helm-cache-purge-interval=5m | ||
# Increase the number of workers and limits | ||
# Ref: https://fluxcd.io/flux/installation/configuration/vertical-scaling/#increase-the-number-of-workers-and-limits | ||
- --concurrent=10 | ||
- --requeue-dependency=5s | ||
resources: | ||
requests: | ||
cpu: 100m | ||
limits: | ||
memory: 2Gi | ||
|
||
policies: | ||
create: false | ||
|
||
prometheus: | ||
podMonitor: | ||
create: true |
27 changes: 27 additions & 0 deletions
27
kubernetes/main/apps/flux-system/flux/app/helmrelease.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/helm.toolkit.fluxcd.io/helmrelease_v2.json | ||
apiVersion: helm.toolkit.fluxcd.io/v2 | ||
kind: HelmRelease | ||
metadata: | ||
name: flux | ||
spec: | ||
interval: 30m | ||
chart: | ||
spec: | ||
chart: flux2 | ||
version: 2.14.0 | ||
sourceRef: | ||
kind: HelmRepository | ||
name: fluxcd-community | ||
namespace: flux-system | ||
install: | ||
remediation: | ||
retries: 3 | ||
upgrade: | ||
cleanupOnFail: true | ||
remediation: | ||
strategy: rollback | ||
retries: 3 | ||
valuesFrom: | ||
- kind: ConfigMap | ||
name: flux-helm-values |
12 changes: 12 additions & 0 deletions
12
kubernetes/main/apps/flux-system/flux/app/kustomization.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
# yaml-language-server: $schema=https://json.schemastore.org/kustomization | ||
apiVersion: kustomize.config.k8s.io/v1beta1 | ||
kind: Kustomization | ||
resources: | ||
- ./helmrelease.yaml | ||
configMapGenerator: | ||
- name: flux-helm-values | ||
files: | ||
- values.yaml=./helm-values.yaml | ||
configurations: | ||
- kustomizeconfig.yaml |
7 changes: 7 additions & 0 deletions
7
kubernetes/main/apps/flux-system/flux/app/kustomizeconfig.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
nameReference: | ||
- kind: ConfigMap | ||
version: v1 | ||
fieldSpecs: | ||
- path: spec/valuesFrom/name | ||
kind: HelmRelease |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/kustomize.toolkit.fluxcd.io/kustomization_v1.json | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: &app flux | ||
namespace: flux-system | ||
spec: | ||
targetNamespace: flux-system | ||
commonMetadata: | ||
labels: | ||
app.kubernetes.io/name: *app | ||
path: ./kubernetes/main/apps/flux-system/flux/app | ||
prune: false # never should be deleted | ||
sourceRef: | ||
kind: GitRepository | ||
name: home-kubernetes | ||
wait: false | ||
interval: 30m | ||
timeout: 5m | ||
--- | ||
# yaml-language-server: $schema=https://kubernetes-schemas.pages.dev/kustomize.toolkit.fluxcd.io/kustomization_v1.json | ||
apiVersion: kustomize.toolkit.fluxcd.io/v1 | ||
kind: Kustomization | ||
metadata: | ||
name: &app flux-github | ||
namespace: flux-system | ||
spec: | ||
targetNamespace: flux-system | ||
commonMetadata: | ||
labels: | ||
app.kubernetes.io/name: *app | ||
dependsOn: | ||
- name: external-secrets-stores | ||
path: ./kubernetes/main/apps/flux-system/flux/github | ||
prune: true | ||
sourceRef: | ||
kind: GitRepository | ||
name: home-kubernetes | ||
wait: false | ||
interval: 30m | ||
timeout: 5m |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ resources: | |
# Pre Flux-Kustomizations | ||
- ./namespace.yaml | ||
# Flux-Kustomizations | ||
- ./addons/ks.yaml | ||
- ./flux/ks.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.