mirror of
https://codeberg.org/27/inception-of-things.git
synced 2025-10-13 18:44:45 +02:00
23 lines
400 B
YAML
23 lines
400 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: app1-deployment
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: app1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: app1
|
|
spec:
|
|
containers:
|
|
- name: app1
|
|
image: ghcr.io/traefik/whoami:v1.11
|
|
ports:
|
|
- containerPort: 80
|
|
command:
|
|
- /whoami
|
|
- --port=80
|
|
- --name=app-one
|