initial commit

This commit is contained in:
2023-02-25 21:08:51 +01:00
commit 464b6eea71
3 changed files with 44 additions and 0 deletions

14
application.yml Normal file
View File

@@ -0,0 +1,14 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: "all-appsets"
namespace: argocd
spec:
project: default
source:
repoURL: git@github.com:1oopio/argocd-appconfig-appsets
targetRevision: HEAD
path: ./appsets
destination:
server: https://kubernetes.default.svc
namespace: argocd

View File

@@ -0,0 +1,27 @@
apiVersion: argoproj.io/v1alpha1
kind: ApplicationSet
metadata:
name: sealed-secrets
namespace: argocd
spec:
generators:
- clusters: {}
template:
metadata:
name: "sealed-secrets-{{name}}"
labels:
environment: prd
spec:
project: default
source:
helm:
releaseName: sealed-secrets
repoURL: https://bitnami-labs.github.io/sealed-secrets
chart: sealed-secrets
targetRevision: 2.7.2
destination:
server: "{{server}}"
namespace: kube-system
syncPolicy:
syncOptions:
- CreateNamespace=true

3
install.sh Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
kubectl apply -f application.yml