mirror of
https://github.com/Dannecron/netology-devops.git
synced 2025-12-25 15:22:37 +03:00
21 lines
344 B
YAML
21 lines
344 B
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: hello-node-deployment
|
|
labels:
|
|
app: hello-node
|
|
spec:
|
|
replicas: 2
|
|
selector:
|
|
matchLabels:
|
|
app: hello-node
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: hello-node
|
|
spec:
|
|
containers:
|
|
- name: hello-node
|
|
image: k8s.gcr.io/echoserver:1.4
|