autocommit

This commit is contained in:
Linus Vogel 2026-07-19 22:20:49 +02:00
parent 843b64346d
commit b6eaa7e026
3 changed files with 34 additions and 0 deletions

20
apps/demo.yaml Normal file
View File

@ -0,0 +1,20 @@
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: demo
namespace: argocd
spec:
project: default
source:
repoURL: https://gitea.linvogel.ch/linus/gitops.git
targetRevision: HEAD
path: helm/demo
helm:
valueFiles:
- values.yaml
destination:
server: https://kubernetes.default.svc
namespace: demo
syncPolicy:
syncOptions:
- CreateNamespace=true

3
helm/demo/Chart.yaml Normal file
View File

@ -0,0 +1,3 @@
apiVersion: v2
name: demo
version: 0.1.0

View File

@ -0,0 +1,11 @@
apiVersion: v1
kind: Pod
metadata:
name: demo
namespace: demo
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80