diff --git a/argo/datasette-application.yaml b/argo/datasette-application.yaml new file mode 100644 index 0000000..e759068 --- /dev/null +++ b/argo/datasette-application.yaml @@ -0,0 +1,18 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: datasette + namespace: argocd +spec: + project: default + source: + repoURL: 'https://github.com/WaylonWalker/learn-helm.git' + targetRevision: HEAD + path: datasette + destination: + server: https://kubernetes.default.svc + namespace: default + syncPolicy: + automated: + prune: true + selfHeal: true diff --git a/argo/temperature-cronjob-application.yaml b/argo/temperature-cronjob-application.yaml new file mode 100644 index 0000000..5700fab --- /dev/null +++ b/argo/temperature-cronjob-application.yaml @@ -0,0 +1,18 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: temperature-cronjob + namespace: argocd +spec: + project: default + source: + repoURL: 'https://github.com/WaylonWalker/learn-helm.git' + targetRevision: HEAD + path: temperature-cronjob + destination: + server: https://kubernetes.default.svc + namespace: default + syncPolicy: + automated: + prune: true + selfHeal: true