23 lines
431 B
YAML
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 |