summaryrefslogtreecommitdiff
path: root/playbooks.d/k3s-master/share/system
diff options
context:
space:
mode:
authorPatrick Spek <p.spek@tyil.nl>2022-07-26 22:41:26 +0200
committerPatrick Spek <p.spek@tyil.nl>2022-07-26 22:41:26 +0200
commitfffbdd8294f44c74a08cf5f3886deca7e6e6db84 (patch)
tree6fae509051feea0c75d47ebb0be7a03f93f02bb9 /playbooks.d/k3s-master/share/system
parentd66723f1ae84c7b7ee9de12ce708c529331bf8db (diff)
Add ArgoCD applications
Diffstat (limited to 'playbooks.d/k3s-master/share/system')
-rw-r--r--playbooks.d/k3s-master/share/system/cert-manager/application.yaml24
-rw-r--r--playbooks.d/k3s-master/share/system/nginx-ingress/application.yaml24
-rw-r--r--playbooks.d/k3s-master/share/system/sealed-secrets/application.yaml24
3 files changed, 72 insertions, 0 deletions
diff --git a/playbooks.d/k3s-master/share/system/cert-manager/application.yaml b/playbooks.d/k3s-master/share/system/cert-manager/application.yaml
new file mode 100644
index 0000000..8ae02fc
--- /dev/null
+++ b/playbooks.d/k3s-master/share/system/cert-manager/application.yaml
@@ -0,0 +1,24 @@
+---
+apiVersion: v1
+kind: Namespace
+metadata:
+ name: cert-manager
+...
+---
+apiVersion: argoproj.io/v1alpha1
+kind: Application
+metadata:
+ name: cert-manager
+ namespace: argocd
+spec:
+ project: default
+ source:
+ repoURL: https://charts.jetstack.io
+ chart: cert-manager
+ targetRevision: v1.9.1
+ destination:
+ server: https://kubernetes.default.svc
+ namespace: cert-manager
+ syncPolicy:
+ automated: {}
+...
diff --git a/playbooks.d/k3s-master/share/system/nginx-ingress/application.yaml b/playbooks.d/k3s-master/share/system/nginx-ingress/application.yaml
new file mode 100644
index 0000000..2296026
--- /dev/null
+++ b/playbooks.d/k3s-master/share/system/nginx-ingress/application.yaml
@@ -0,0 +1,24 @@
+---
+apiVersion: v1
+kind: Namespace
+metadata:
+ name: ingress
+...
+---
+apiVersion: argoproj.io/v1alpha1
+kind: Application
+metadata:
+ name: nginx-ingress
+ namespace: argocd
+spec:
+ project: default
+ source:
+ repoURL: https://helm.nginx.com/stable
+ chart: nginx-ingress
+ targetRevision: 0.14.0
+ destination:
+ server: https://kubernetes.default.svc
+ namespace: ingress
+ syncPolicy:
+ automated: {}
+...
diff --git a/playbooks.d/k3s-master/share/system/sealed-secrets/application.yaml b/playbooks.d/k3s-master/share/system/sealed-secrets/application.yaml
new file mode 100644
index 0000000..a48a26d
--- /dev/null
+++ b/playbooks.d/k3s-master/share/system/sealed-secrets/application.yaml
@@ -0,0 +1,24 @@
+---
+apiVersion: v1
+kind: Namespace
+metadata:
+ name: sealed-secrets
+...
+---
+apiVersion: argoproj.io/v1alpha1
+kind: Application
+metadata:
+ name: sealed-secrets
+ namespace: argocd
+spec:
+ project: default
+ source:
+ repoURL: https://bitnami-labs.github.io/sealed-secrets
+ chart: sealed-secrets
+ targetRevision: 2.4.0
+ destination:
+ server: https://kubernetes.default.svc
+ namespace: sealed-secrets
+ syncPolicy:
+ automated: {}
+...