sidecar2 Kubernetes - Pods PodsPod는 Kubernetes에서 생성하고 관리할 수 있는 배포 가능한 가장 작은 컴퓨팅 단위이며, 한 개 또는 여러 개의 컨테이너들의 묶음이다. Kubernetes 클러스터의 Pod는 두 가지 방법으로 사용된다.Pods that run a single container.: 하나의 Pod에 하나의 컨테이너를 사용하는 경우Pods that run multiple containers that need to work together. : 여러 개의 컨테이너를 배치해서 사용하는 경우. Using Pods아래 예제는 nginx: 1.14.2 이미지를 실행하는 Pod 예제다.apiVersion: v1kind: Podmetadata: name: nginxspec: containers: - nam.. 2024. 7. 4. Dapr Quick Start Introduction to the Distributed Application RuntimeDapr는 클라우드나 엣지에서 실행 가능하여, 간단하게 마이크로서비스 애플리케이션을 구축할 수 있게 해 준다.분산 애플리케이션에 내재된 큰 어려움 중 하나인 복잡성을 해결해 준다. 다양한 언어를 지원한다. Microservice building blocks for cloud and edgeBuilding Block을 제공하여 마이크로서비스 애플리케이션을 구축할 때 공통 기능에 대한 표준적인 방법을 제공한다. Building BlockEndpointDescriptionService-to-service invocation/v1.0/invokeResilient service-to-service invocation ena.. 2024. 6. 5. 이전 1 다음