Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 파이썬
- C언어
- 스트림셋이란?
- 푸시푸시
- 도커 elk
- 도커
- MySQL
- ansible install
- elk stack
- 클라우드
- 앤서블 설치
- 백준
- 자바
- c++
- 알고리즘
- 데이터베이스
- mysql on docker
- 도커 시작하기
- 정보처리기사
- mysql docker
- docker
- java
- 데이트
- 스트림셋
- 도커 mysql
- nvidia docker
- streamsets 강의
- 코딩
- c
- python
Archives
- Today
- Total
리그캣의 개발놀이터
[kubernetes] replicaset controller 와 replica set 비교 본문
replica set 과 replication controller 비교
replica set은 replication controller와 똑같이 동작하지만 더 풍부한 표현식 pod selector를 갖는다.
replication controller의 라벨 셀렉터는 특정 라벨을 포함하는 pod가 일치 하는지만 보는 반명 replicaset의 셀렉터는 특정 라벨이 없거나 해당 값과 관계없이 특정 라벨 키를 포함하는 pod를 매치하는지 확인한다.
또한 예를들어 단일 replication controller는 pod의 라벨 env=production 및 라벨 env=devel 과 동시에 일치 시킬 수 없고 하나의 env만 일치 가능하다. 그러나 단일 replicaset은 두 pod 세트 모두 일치 시킬 수 있다.
아래와 같이 구성된 replicaset은
apiVersion: extensions/v1beta1
kind: ReplicaSet
metadata:
name: example
spec:
replicas: 3
selector:
matchLabels:
app: example
template:
metadata:
labels:
app: example
environment: dev
spec:
containers:
- name: example
image: example/rs
ports:
- containerPort: 80
아래와 같은 라벨을 사용가능하다.
...
spec:
replicas: 3
selector:
matchExpressions:
- {key: app, operator: In, values: [example, example, rs]}
- {key: teir, operator: NotIn, values: [production]}
template:
metadata:
...
ref
'인프라 > Docker' 카테고리의 다른 글
[ kubernetes ] 고아 pods orphaned pod "" found, but volume paths are still present on disk : There were a total of 1 errors similar to this. Turn up verbosity to see them. (0) | 2020.08.14 |
---|---|
[docker] ubuntu18.04에 docker 도커 설치 (0) | 2020.07.28 |
[k8s] master에 worker node처럼 application 배포하기 (0) | 2020.06.30 |
[docker-compose] .env 환경변수 참조 오류 (0) | 2020.05.15 |
[쿠버네티스] 시작하기, vm없이 시작하기 (0) | 2020.05.15 |
Comments