반응형 Replicas1 [CKA] Replication, ReplicaSet #ReplicationController 생성 YAML 파일 apiVersion: v1 kind: ReplicationController metadata: // ReplicationController 관련 설정 name: labels: app: type: spec: template: //pod 관련 설정 metadata: name: labels: app: type: spec: containers: - name: image: replicas: 3 # YAML파일로 Replication Controller 생성 kubectl create -f rc.yaml # RC 리스팅 조회 kubectl get replicationcontroller # replicas에 설정된 수만큼 pod 존재여부 확인 kubectl.. 2022. 2. 28. 이전 1 다음 반응형