This commit is contained in:
Thomas Kruse
2026-09-02 22:11:05 +02:00
commit 24b9717db2
49 changed files with 818 additions and 0 deletions

View File

@ -0,0 +1,28 @@
apiVersion: v1
kind: Pod
metadata:
name: web
namespace: isolated
labels:
app: web
spec:
containers:
- name: web
image: ghcr.io/trion-development/echoserver:1
ports:
- containerPort: 3000
resources: {}
---
apiVersion: v1
kind: Pod
metadata:
name: client
namespace: isolated
labels:
app: client
spec:
containers:
- name: curl
image: trion/curl:1
tty: true
resources: {}