From 4f8df0e2313836fcf3bc58bc6c06fba69a2d0635 Mon Sep 17 00:00:00 2001 From: Linus Vogel Date: Thu, 23 Jul 2026 22:27:56 +0200 Subject: [PATCH] autocommit --- apps/test.yaml | 20 -------------------- helm/test/Chart.yaml | 3 --- helm/test/templates/pod.yaml | 20 -------------------- helm/test/templates/service.yaml | 13 ------------- helm/test/templates/virtualservice.yaml | 17 ----------------- helm/test/templates/webpage-cm.yaml | 16 ---------------- helm/test/values.yaml | 0 7 files changed, 89 deletions(-) delete mode 100644 apps/test.yaml delete mode 100644 helm/test/Chart.yaml delete mode 100644 helm/test/templates/pod.yaml delete mode 100644 helm/test/templates/service.yaml delete mode 100644 helm/test/templates/virtualservice.yaml delete mode 100644 helm/test/templates/webpage-cm.yaml delete mode 100644 helm/test/values.yaml diff --git a/apps/test.yaml b/apps/test.yaml deleted file mode 100644 index 31a3208..0000000 --- a/apps/test.yaml +++ /dev/null @@ -1,20 +0,0 @@ -apiVersion: argoproj.io/v1alpha1 -kind: Application -metadata: - name: test - namespace: argocd -spec: - project: default - source: - repoURL: https://gitea.linvogel.ch/linus/gitops.git - targetRevision: HEAD - path: helm/test - helm: - valueFiles: - - values.yaml - destination: - server: https://kubernetes.default.svc - namespace: test - syncPolicy: - syncOptions: - - CreateNamespace=true \ No newline at end of file diff --git a/helm/test/Chart.yaml b/helm/test/Chart.yaml deleted file mode 100644 index 13544dc..0000000 --- a/helm/test/Chart.yaml +++ /dev/null @@ -1,3 +0,0 @@ -apiVersion: v2 -name: test -version: 0.1.0 diff --git a/helm/test/templates/pod.yaml b/helm/test/templates/pod.yaml deleted file mode 100644 index b4cd16d..0000000 --- a/helm/test/templates/pod.yaml +++ /dev/null @@ -1,20 +0,0 @@ -apiVersion: v1 -kind: Pod -metadata: - name: test - namespace: test - labels: - app.kubernetes.io/name: test -spec: - containers: - - name: nginx - image: nginx:1.14.2 - ports: - - containerPort: 80 - volumeMounts: - - name: webpage - mountPath: /usr/share/nginx/html - volumes: - - name: webpage - configMap: - name: test-cm \ No newline at end of file diff --git a/helm/test/templates/service.yaml b/helm/test/templates/service.yaml deleted file mode 100644 index 2e8535a..0000000 --- a/helm/test/templates/service.yaml +++ /dev/null @@ -1,13 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: test - namespace: test -spec: - ports: - - name: http - port: 80 - protocol: TCP - targetPort: 80 - selector: - app.kubernetes.io/name: test diff --git a/helm/test/templates/virtualservice.yaml b/helm/test/templates/virtualservice.yaml deleted file mode 100644 index 867ff86..0000000 --- a/helm/test/templates/virtualservice.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: networking.istio.io/v1 -kind: VirtualService -metadata: - name: test - namespace: test -spec: - hosts: - - "blah.apps.linvogel.internal" - gateways: - - istio-ingress/istio-gateway - http: - - name: "test-route" - route: - - destination: - host: test.test.svc.cluster.local - port: - number: 80 \ No newline at end of file diff --git a/helm/test/templates/webpage-cm.yaml b/helm/test/templates/webpage-cm.yaml deleted file mode 100644 index 4d29e6f..0000000 --- a/helm/test/templates/webpage-cm.yaml +++ /dev/null @@ -1,16 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: test-cm - namespace: test -data: - index.html: | - - - hello there - - -

Test Page

-

Lorem ipsum, dolor sit amet.

- - \ No newline at end of file diff --git a/helm/test/values.yaml b/helm/test/values.yaml deleted file mode 100644 index e69de29..0000000