Versions Compared

Key

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

...

Info


Info
iconfalse
titlehttps://dev-k8sref-io.web.app/docs/workloads/replicaset-v1/
  • apiVersion: 쿠버네티스 API버전을 가리킴

  • kind: 리소스 유형

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

    • namespace
    • name
    • labels
  • spec (ReplicaSetSpec): 컨테이너, 볼륨등의 정보

    • template

      • metadata
      • spec
        • containers
        • volumes
    • selector

    • replicas

  • status(ReplicaSetStatus) : 포드의 상태, 각 컨테이너의 설명 및 상태, 포드 내부의 IP 및 그밖의 기본 정보 등
Code Block
apiVersion: apps/v1
kind: ReplicaSet
metadata:
  name: nginx-rs
  labels:
    app: myapp
spec:
  template:
	metadata:
      name: nginx
    labels:
      app: myapp
  spec:
    containers
    - name: nginx
      image: nginx:1.14.2


...