20 lines
338 B
YAML
20 lines
338 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: whoami
|
|
namespace: apps
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: whoami
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: whoami
|
|
spec:
|
|
containers:
|
|
- name: whoami
|
|
image: traefik/whoami
|
|
ports:
|
|
- containerPort: 80 |