19 lines
321 B
YAML
19 lines
321 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: web
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app: web
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: web
|
|
spec:
|
|
containers:
|
|
- name: web
|
|
image: gcr.io/google-samples/hello-app:1.0
|
|
ports:
|
|
- containerPort: 8080 |