🏗️」 wip: should be working but pull limit is off for today

This commit is contained in:
2025-08-27 20:19:01 +02:00
parent e8d7fd7db7
commit 8b44410a94
7 changed files with 99 additions and 8 deletions

View File

@ -0,0 +1,21 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: app1-deployment
spec:
selector:
matchLabels:
app: app1
template:
metadata:
labels:
app: app1
spec:
containers:
- name: app1
image: traefik/whoami:v1.11
ports:
- containerPort: 80
command:
- --port=80
- --name=app-one

View File

@ -0,0 +1,11 @@
apiVersion: v1
kind: Service
metadata:
name: app1-service
spec:
type: ClusterIP
selector:
app: app1
ports:
- port: 80
targetPort: 80