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