Skip to content
Draft
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
5 changes: 5 additions & 0 deletions apps/eks-version-exporter/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- sources.yaml
- release.yaml
27 changes: 27 additions & 0 deletions apps/eks-version-exporter/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
apiVersion: helm.toolkit.fluxcd.io/v2
kind: HelmRelease
metadata:
name: eks-version-exporter
namespace: monitoring
spec:
releaseName: eks-version-exporter
serviceAccountName: helm-controller
driftDetection:
mode: enabled # This is not a traditional helm chart with releases, so it is consumed from branch
chart:
spec:
chart: chart
reconcileStrategy: Revision # This is not a traditional helm chart with releases, so it is consumed from branch
sourceRef:
kind: GitRepository
name: eks-version-exporter
namespace: monitoring
interval: 1m0s
install:
remediation:
retries: 3
values:
priorityClassName: cluster-observability
image:
tag: "latest"
12 changes: 12 additions & 0 deletions apps/eks-version-exporter/sources.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
apiVersion: source.toolkit.fluxcd.io/v1
kind: GitRepository
metadata:
name: eks-version-exporter
namespace: monitoring
spec:
interval: 1h0m0s
ref:
branch: feature/add-helm-chart #master
timeout: 60s
url: https://github.com/dfds/eks-version-exporter
Loading