diff --git a/baseline/application.yaml b/baseline/application.yaml new file mode 100644 index 0000000..844b415 --- /dev/null +++ b/baseline/application.yaml @@ -0,0 +1,23 @@ +apiVersion: argoproj.io/v1alpha1 +kind: Application +metadata: + name: baseline + namespace: ptp-chat +spec: + project: ptp-chat + source: + repoURL: https://gitea.controller.bittehackmichnicht.de/argocd/kubernetes-config.git + targetRevision: main + path: baseline + destination: + server: https://kubernetes.default.svc + namespace: ptp-chat + syncPolicy: + automated: + prune: true + selfHeal: true + enabled: true + ignoreDifferences: + - kind: Secret + jsonPointers: + - /data diff --git a/baseline/deployment.yaml b/baseline/deployment.yaml new file mode 100644 index 0000000..ec84b9a --- /dev/null +++ b/baseline/deployment.yaml @@ -0,0 +1,21 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: baseline + namespace: ptp-chat + labels: + app: baseline +spec: + replicas: 1 + selector: + matchLabels: + app: baseline + template: + metadata: + labels: + app: baseline + spec: + containers: + - name: baseline + image: debian:trixie + command: ["tail", "-f", "/dev/null"] \ No newline at end of file diff --git a/baseline/kustomization.yaml b/baseline/kustomization.yaml new file mode 100644 index 0000000..e05ecc4 --- /dev/null +++ b/baseline/kustomization.yaml @@ -0,0 +1,7 @@ +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization + +namespace: ptp-chat + +resources: + - deployment.yaml \ No newline at end of file