Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info
iconfalse
Info

ReplicaSet은 애플리케이션의 지정된 수의 동일한 복사본(복제본)이 항상 실행되도록 보장합니다. 

이는 애플리케이션의 일부가 실패하더라도 애플리케이션의 가용성과 안정성을 유지하는 문제를 해결합니다.

Info
iconfalse
titlehttps://velog.io/@salgu1998/Kubernetes-%EC%BF%A0%EB%B2%84%EB%84%A4%ED%8B%B0%EC%8A%A4-ReplicaSet

 





ReplicaSet Manifests

Info
iconfalse

 https://dev-k8sref-io.web.app/docs/workloads/replicaset-v1/

Info
iconfalse
  • apiVersion: 쿠버네티스 API버전을 가리킴

  • kind: 리소스 유형

  • metadata (ObjectMeta): 포드와 관련된 이름, 네임스페이스, 라벨, 그밖의 정보

    • namespace
    • name
    • labels
  • spec (ReplicaSetSpec): PodTemplate

    • template

      • metadata
        • name
        • labels
      • spec
        • containers
        • volumes
    • selector

    • replicas

  • status(ReplicaSetStatus) : 포드의 상태, 각 컨테이너의 설명 및 상태, 포드 내부의 IP 및 그밖의 기본 정보 등
Code Block
titlenginx-rs.yaml
linenumberstrue
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


Info
iconfalse
  • Labels and Selectors

    • Pod Discovery 기능: Label이 "type: front-end" 인 Pod만 Select

Code Block
  selector:
    matchLabels:
      type: front-end
  • replicas

    • 유지할 Pod갯수
Code Block
   replicas: 3 



...