add baseline
All checks were successful
Mirror to GitHub / mirror (push) Successful in 10s

This commit is contained in:
jona.klaess
2026-06-15 17:54:47 +02:00
parent 0e727e5c8b
commit c7e336fb00
3 changed files with 51 additions and 0 deletions

23
baseline/application.yaml Normal file
View File

@@ -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

21
baseline/deployment.yaml Normal file
View File

@@ -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"]

View File

@@ -0,0 +1,7 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: ptp-chat
resources:
- deployment.yaml