autocommit

This commit is contained in:
Linus Vogel 2026-07-23 22:27:56 +02:00
parent 2a84941864
commit 4f8df0e231
7 changed files with 0 additions and 89 deletions

View File

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

View File

@ -1,3 +0,0 @@
apiVersion: v2
name: test
version: 0.1.0

View File

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

View File

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

View File

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

View File

@ -1,16 +0,0 @@
apiVersion: v1
kind: ConfigMap
metadata:
name: test-cm
namespace: test
data:
index.html: |
<html>
<head>
<title>hello there</title>
</head>
<body>
<h1>Test Page</h1>
<p>Lorem ipsum, dolor sit amet.</p>
</body>
</html>

View File