autocommit
This commit is contained in:
parent
843b64346d
commit
b6eaa7e026
20
apps/demo.yaml
Normal file
20
apps/demo.yaml
Normal 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
3
helm/demo/Chart.yaml
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
apiVersion: v2
|
||||||
|
name: demo
|
||||||
|
version: 0.1.0
|
||||||
11
helm/demo/templates/pod.yaml
Normal file
11
helm/demo/templates/pod.yaml
Normal 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
|
||||||
Loading…
x
Reference in New Issue
Block a user