Files
lab-k8s/hello-world/deployment.yml
Eason(G Ray) 14df1fb03b init
2024-06-28 13:43:34 +08:00

23 lines
431 B
YAML

kind: Deployment
apiVersion: apps/v1
metadata:
name: hello-world
labels:
app: hello-world
spec:
replicas: 1
selector:
matchLabels:
app: hello-world
template:
metadata:
labels:
app: hello-world
spec:
containers:
- name: hello-world
image: registry.hub.docker.com/lmmendes/http-hello-world
ports:
- name: web
containerPort: 80