IT 매일매일
k8s Controller - replicaset?
jj27
2023. 4. 26. 10:48
ReplicaSet
- 간단 실습-
대시보드에서 레플리카셋 생성 (스펙 밑에 레플리카를 1로 지정했다)
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: replica1
spec:
replicas: 1
selector:
matchLabels:
type: web
template:
metadata:
name: pod
labels:
type: web
spec:
containers:
- name: container
image: mnstv/hello:8000
terminationGracePeriodSeconds: 0