Files
compose-template/Test/Kubernetes/nginx/nginx-replicaset.yaml
2022-07-04 18:22:30 +08:00

23 lines
376 B
YAML

apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: frontend
namespace: nginx
labels:
app: guestbook
tier: frontend
spec:
# modify replicas according to your case
replicas: 3
selector:
matchLabels:
tier: frontend
template:
metadata:
labels:
tier: frontend
spec:
containers:
- name: nginx
image: nginx