Info | ||||
---|---|---|---|---|
| ||||
|
ReplicaSet 개요
Info | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
Pod을 단독으로 만들면 Pod에 어떤 문제(서버가 죽어서 Pod이 사라졌다던가)가 생겼을 때 자동으로 복구되지 않습니다. Pod을 정해진 수만큼 복제하고 관리하는 것이 ReplicaSet입니다. |
ReplicaSet Manifests
Info | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Info |
| ||||||||||||
title |
Info | ||
---|---|---|
| ||
|
Code Block | ||||
---|---|---|---|---|
| ||||
apiVersion: apps/v1
kind: ReplicaSet
metadata:
name: nginx-rs
labels:
app: myapp-rs
type: front-end
spec:
template:
metadata:
name: nginx
labels:
app: myapp
type: front-end
spec:
containers:
- name: nginx
image: nginx:1.14.2
ports:
- containerPort: 80
selector:
matchLabels:
type: front-end
replicas: 3
|
ReplicaSet 실습
Info | ||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||
Scale
자가치유
컨테이너 이미지 버전이 변경되었다면?
|