aboutsummaryrefslogtreecommitdiff
path: root/kubernetes/traefik/03-whoami.yml
diff options
context:
space:
mode:
authorclyhtsuriva <aimeric@adjutor.xyz>2025-03-24 20:28:59 +0100
committerclyhtsuriva <aimeric@adjutor.xyz>2025-03-24 20:28:59 +0100
commit471338b9dd3e3cd255bb9f43d7e7d3754f1b1999 (patch)
treebe5cc13a4fbff492c250c0c3be5a25d98e85c86e /kubernetes/traefik/03-whoami.yml
parent36943b299a26a94c92dbfa16a11a450b04725da1 (diff)
k8s: add traefik and test app "whoami"
Diffstat (limited to 'kubernetes/traefik/03-whoami.yml')
-rw-r--r--kubernetes/traefik/03-whoami.yml25
1 files changed, 25 insertions, 0 deletions
diff --git a/kubernetes/traefik/03-whoami.yml b/kubernetes/traefik/03-whoami.yml
new file mode 100644
index 0000000..8b21f67
--- /dev/null
+++ b/kubernetes/traefik/03-whoami.yml
@@ -0,0 +1,25 @@
+---
+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
+...