# Kubernetes Basics (Go) > Pods, Deployments, Services, ConfigMaps, Secrets, 헬스 체크, 리소스 제한 - 22 면접 질문 - Senior - [면접 질문: Go](https://sharpskill.dev/ko/technologies/go/interview-questions.md) ## 1. Kubernetes에서 Pod란 무엇입니까? **답변** Pod는 Kubernetes에서 배포 가능한 가장 작은 단위입니다. 동일한 네트워크 및 스토리지 네임스페이스를 공유하는 하나 이상의 컨테이너 그룹을 나타냅니다. Pod 내의 컨테이너는 localhost를 통해 통신할 수 있으며 동일한 볼륨에 접근할 수 있습니다. Pod는 포함된 컨테이너에 공유 실행 컨텍스트를 제공합니다. ## 2. 단독 Pod 대신 Deployment를 사용하는 주요 이점은 무엇입니까? **답변** Deployment는 복제, 롤링 업데이트, 롤백을 포함하여 Pod의 라이프사이클을 자동으로 관리합니다. 지정된 수의 레플리카가 항상 실행되도록 보장합니다. Pod가 실패하면 Deployment는 원하는 상태를 유지하기 위해 자동으로 새 Pod를 생성합니다. ## 3. 애플리케이션을 클러스터 내부에만 노출하려면 어떤 Kubernetes Service 유형을 사용해야 합니까? **답변** ClusterIP는 Kubernetes의 기본 Service 유형입니다. 클러스터 내부에서만 접근 가능한 가상 IP 주소를 생성합니다. 이 유형은 프런트엔드와 백엔드 간, 또는 API와 데이터베이스 간과 같은 서비스 간 통신에 이상적입니다. 기반 Pod가 바뀌어도 ClusterIP 주소는 안정적으로 유지됩니다. ## 19개 추가 질문 이용 가능 - Kubernetes에서 민감하지 않은 구성 데이터를 어떻게 저장합니까? - Kubernetes에서 Secret과 ConfigMap의 주요 차이점은 무엇입니까? 무료로 가입하기: https://sharpskill.dev/ko/login ## 기타 Go 면접 주제 - [Go 기초](https://sharpskill.dev/ko/technologies/go/interview-questions/go-basics.md): 25개 질문, Junior - [Go 데이터 구조](https://sharpskill.dev/ko/technologies/go/interview-questions/go-data-structures.md): 20개 질문, Junior - [Go 인터페이스](https://sharpskill.dev/ko/technologies/go/interview-questions/go-interfaces.md): 18개 질문, Junior - [에러 처리](https://sharpskill.dev/ko/technologies/go/interview-questions/error-handling.md): 20개 질문, Junior - [Goroutine 기초](https://sharpskill.dev/ko/technologies/go/interview-questions/goroutines-basics.md): 20개 질문, Junior - [Channels](https://sharpskill.dev/ko/technologies/go/interview-questions/channels.md): 22개 질문, Junior - [Go Modules](https://sharpskill.dev/ko/technologies/go/interview-questions/go-modules.md): 18개 질문, Mid-Level - [HTTP 서버](https://sharpskill.dev/ko/technologies/go/interview-questions/http-server.md): 24개 질문, Mid-Level - [HTTP 클라이언트](https://sharpskill.dev/ko/technologies/go/interview-questions/http-client.md): 18개 질문, Mid-Level - [JSON 인코딩](https://sharpskill.dev/ko/technologies/go/interview-questions/json-encoding.md): 20개 질문, Mid-Level - [Database/SQL](https://sharpskill.dev/ko/technologies/go/interview-questions/database-sql.md): 22개 질문, Mid-Level - [context 패키지](https://sharpskill.dev/ko/technologies/go/interview-questions/context-package.md): 20개 질문, Mid-Level - [Testing](https://sharpskill.dev/ko/technologies/go/interview-questions/testing.md): 22개 질문, Mid-Level - [동시성 패턴](https://sharpskill.dev/ko/technologies/go/interview-questions/concurrency-patterns.md): 24개 질문, Mid-Level - [동기화 프리미티브](https://sharpskill.dev/ko/technologies/go/interview-questions/sync-primitives.md): 22개 질문, Mid-Level - [Go 웹 프레임워크](https://sharpskill.dev/ko/technologies/go/interview-questions/go-web-frameworks.md): 20개 질문, Mid-Level - [REST API 설계](https://sharpskill.dev/ko/technologies/go/interview-questions/rest-api-design.md): 20개 질문, Mid-Level - [gRPC](https://sharpskill.dev/ko/technologies/go/interview-questions/grpc.md): 22개 질문, Mid-Level - [Reflection](https://sharpskill.dev/ko/technologies/go/interview-questions/reflection.md): 20개 질문, Senior - [메모리 관리](https://sharpskill.dev/ko/technologies/go/interview-questions/memory-management.md): 24개 질문, Senior - [성능 최적화](https://sharpskill.dev/ko/technologies/go/interview-questions/performance-optimization.md): 22개 질문, Senior - [Generics](https://sharpskill.dev/ko/technologies/go/interview-questions/generics.md): 20개 질문, Senior - [Go Design Patterns](https://sharpskill.dev/ko/technologies/go/interview-questions/design-patterns.md): 24개 질문, Senior - [Microservices](https://sharpskill.dev/ko/technologies/go/interview-questions/microservices.md): 24개 질문, Senior - [보안 및 인증](https://sharpskill.dev/ko/technologies/go/interview-questions/security-authentication.md): 24개 질문, Senior - [Docker & Containerization](https://sharpskill.dev/ko/technologies/go/interview-questions/docker-containerization.md): 20개 질문, Senior - [고급 Go](https://sharpskill.dev/ko/technologies/go/interview-questions/advanced-go.md): 20개 질문, Senior - [CLI 개발](https://sharpskill.dev/ko/technologies/go/interview-questions/cli-development.md): 20개 질문, Senior --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/ko/technologies/go/interview-questions/kubernetes-basics