일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- 오블완
- 알고리즘
- Apache Hadoop
- apache kafka
- 이진탐색
- 파이썬
- 티스토리챌린지
- String
- 문자열
- leetcode
- 리트코드
- DP
- 프로그래머스
- 분산처리
- 하둡
- docker
- heapq
- 도커
- 코딩테스트
- BFS
- Apache Spark
- programmers
- 분산
- KAFKA
- 카프카
- Python
- 아파치 스파크
- 아파치 하둡
- 아파치 카프카
- 우선순위큐
- Today
- Total
목록2025/01/23 (3)
래원
이번 글에서는 Kubernetes Dashboard 설정 과정에 대해 정리할 예정이다. Kubernetes Dashboard는 클러스터를 시각적으로 관리할 수 있는 웹 기반 UI이다. 이를 통해 리소스의 상태를 쉽게 파악하고 관리할 수 있기 때문에 Dashboard 설정을 진행했다. Deploying Dashboard UIHelm 설치 공식문서에서 위 그림과 같이 현재 대시보드는 helm 기반 설치만 지원한다고 되어있다.(helm이란 kubernetes 애플리케이션을 배포하고 관리하기 위한 패키지 매니저로 볼 수 있다.) 따라서, helm이 설치되어 있지 않으면 먼저 이를 설치해주어야한다.curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/..
이번 글에서는 Kubernetes를 설치한 과정에 대해 정리할 예정이다. Kubernetes 설치 방법은 Minikube, kubeadm, kubernetes 공식 클라우드 배포 방법 등 다양한데 나는 kubeadm을 사용했다. APT 패키지 업데이트 및 필수 패키지 설치먼저 apt 패키지 업데이트 및 필수 패키지를 설치한다.sudo apt-get updatesudo apt-get install -y apt-transport-https ca-certificates curl gnupg Kubernetes APT 저장소 키 추가다음으로 kubernetes apt 저장소 키를 추가한다.# If the folder `/etc/apt/keyrings` does not exist, it should be creat..
난이도: Medium문제 설명You are given a map of a server center, represented as a m * n integer matrix grid, where 1 means that on that cell there is a server and 0 means that it is no server. Two servers are said to communicate if they are on the same row or on the same column.Return the number of servers that communicate with any other server. 문제 예제Example 1:Input: grid = [[1,0],[0,1]] Output: 0 Explan..