일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 분산
- 도커
- 아파치 스파크
- 그래프
- 티스토리챌린지
- Apache Spark
- 쿠버네티스
- String
- 알고리즘
- 파이썬
- 리트코드
- programmers
- 분산처리
- Kubernetes
- BFS
- 프로그래머스
- 오블완
- 우선순위큐
- 이진탐색
- 하둡
- 아파치 카프카
- heapq
- 코딩테스트
- DP
- Python
- apache kafka
- leetcode
- Apache Hadoop
- 아파치 하둡
- docker
- Today
- Total
목록2025/02/10 (2)
래원
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/MIcox/btsMdMuaLHd/MxWamwk1OnAkEsajrtfkHK/img.png)
이번 글에서는 Kubernetes의 기본 오브젝트 중 하나인 Volume에 대해 정리하려고 한다. 목차는 다음과 같다. 1. What is Volume?2. Volume - emptyDir3. Volume - hostPath4. Volume - PVC/PV5. 정리 1. What is Volume? Volume은 정의 하면 다음과 같다.Pod 또는 Pod내 컨테이너들이 데이터를 저장하고 공유할 수 있도록 제공하는 스토리지 영역 그렇다면 이러한 Volume은 왜 쓰는 것일까? 일반적으로 컨테이너는 내부 파일시스템을 사용하지만 컨테이너가 재시작되거나 Pod가 삭제되면 데이터도 함께 사라진다. 이미지 내부에 들어가 있는 데이터들은 삭제되더라도 상관없을 수 있지만, 만약 로그 파일을 보관해야 한다거나 DB를 ..
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/cxCUZm/btsMdKQpX2E/C6GkvNZAa1WbUyo7LD6jUK/img.png)
난이도: Easy문제 설명 You are given a string s. Your task is to remove all digits by doing this operation repeatedly:Delete the first digit and the closest non-digit character to its left.Return the resulting string after removing all digits. 문제 예제Example 1:Input: s = "abc"Output: "abc"Explanation:There is no digit in the string.Example 2:Input: s = "cb34"Output: ""Explanation:First, we apply the opera..