kustomize + helm now managed by argocd

This commit is contained in:
2023-11-14 10:09:36 +01:00
parent d217b162ff
commit 73630c45da
10 changed files with 90 additions and 6 deletions

View File

@@ -0,0 +1,5 @@
### Argo-apps collection
The applications and configurations specified in this folder represent the argo-specific configuration needed to deploy apps. The actual configuration of each app is located in its own folder under `/apps/<app-name>`.
Since each `application` is a kubernetes CRD they can be bundled through a kustomize setup.

View File

@@ -0,0 +1,18 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: homeassistant-application
namespace: argocd
spec:
project: default
source:
repoURL: https://github.com/moll-re/k3s-infra.git
targetRevision: HEAD
path: apps/homeassistant
destination:
server: https://kubernetes.default.svc
namespace: homeassistant
syncPolicy:
automated:
prune: true
selfHeal: true

View File

@@ -0,0 +1,4 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- application.yaml

View File

@@ -8,4 +8,5 @@ resources:
- argocd-imageupdate/
- whoami/
- journal/
- immich/
- immich/
- homeassistant/