Add a test app

This commit is contained in:
2024-02-12 22:36:37 +00:00
parent f3e31a3c58
commit 2bdb8dbed0
5 changed files with 72 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
kind: Deployment
apiVersion: apps/v1
metadata:
name: whoami
labels:
app: whoami
spec:
replicas: 1
selector:
matchLabels:
app: whoami
template:
metadata:
labels:
app: whoami
spec:
containers:
- name: whoami
image: traefik/whoami
ports:
- name: web
containerPort: 80