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