22 lines
372 B
YAML
22 lines
372 B
YAML
apiVersion: apps/v1
|
|
kind: ReplicaSet
|
|
metadata:
|
|
name: myapp-replicaset
|
|
labels:
|
|
app: myapp
|
|
type: frontend
|
|
spec:
|
|
template:
|
|
metadata:
|
|
name: myapp-pod
|
|
labels:
|
|
app: myapp
|
|
type: frontend
|
|
spec:
|
|
containers:
|
|
- name: nginx-container
|
|
image: nginx
|
|
replicas: 5
|
|
selector:
|
|
matchLabels:
|
|
type: frontend |