Keywords: 

Virtual Machine (VM) vs. Container

Cluster

     Master Node - Worker Node  

                       - Worker Node

Pod Selection

Service (Load balancing)

Replication

Deployment

Helen

YAML

 

 

쿠버네티스 문서 | Kubernetes

 

쿠버네티스 문서

쿠버네티스는 컨테이너화된 애플리케이션의 배포, 확장 및 관리를 자동화하기 위한 오픈소스 컨테이너 오케스트레이션 엔진이다. 오픈소스 프로젝트는 Cloud Native Computing Foundation에서 주관한다.

kubernetes.io

 

'Microservice' 카테고리의 다른 글

WSL (Windows Subsystem for Linux) - Ubuntu - Docker  (0) 2021.07.07

 

[WSL]

 

https://docs.microsoft.com/ko-kr/windows/wsl/install-win10#manual-installation-steps

 

Windows 10에 WSL 설치

Bash 터미널을 사용하여 Linux 배포(Ubuntu, Debian, SUSE, Kali, Fedora, Pengwin 및 Alpine 포함)를 Windows 10 머신에 설치하는 방법을 알아봅니다.

docs.microsoft.com

 

1. Run winver.exe and check the version of Windows 10 is 2004 or higher

 

Ensure your machine is running Windows 10, updated to version 2004, Build 18362 or higher.

 

2. Run cmd.exe as admin and Enable the 'Windows Subsystem for Linux' and 'Virtual Machine feature'

dism.exe /online /enable-feature /featurename:Microsoft-Windows-Subsystem-Linux /all /norestart
dism.exe /online /enable-feature /featurename:VirtualMachinePlatform /all /norestart

 

3. Reboot the computer

 

4. Download and update Linux kernal 

https://wslstorestorage.blob.core.windows.net/wslblob/wsl_update_x64.msi

 

5. Set WSL 2 as the default version 

wsl --set-default-version 2

 

* 0x80370102 error

   : Windows 기능 켜기 끄기 > Enable Hyper-V

   : BIOS > Enable CPU Virtualization (Intel Virtualization Technology, AMD SVM Mode)

 

[Ubuntu]

 

1. Download and install Linux distrubution

https://www.microsoft.com/store/apps/9n6svws3rx71

 

Ubuntu 20.04 LTS 구매 - Microsoft Store ko-KR

Microsoft Store에서 이 Windows 10용 앱을 다운로드하세요. 스크린샷을 보고, 최신 고객 리뷰를 읽고, Ubuntu 20.04 LTS에 대한 평점을 비교하세요.

www.microsoft.com

 

[Windows Terminal]

1. Download and install Windows Terminal

https://www.microsoft.com/store/productId/9N0DX20HK701

 

Get Windows Terminal - Microsoft Store

Download this app from Microsoft Store for Windows 10. See screenshots, read the latest customer reviews, and compare ratings for Windows Terminal.

www.microsoft.com

 

[Docker Desktop]

 

https://docs.docker.com/docker-for-windows/wsl/#download

 

Docker Desktop WSL 2 backend

 

docs.docker.com

 

'Microservice' 카테고리의 다른 글

Kubernetes (K8s)  (0) 2021.07.09

 

sudo ntpdate time.google.com

Server List

3.kr.pool.ntp.org

time.windows.com

ntp2.kornet.net

time.bora.net

 

NTP Pool Projecthttp://ntppool.org

 

pool.ntp.org: the internet cluster of ntp servers

Packet is awesome. When we started planning our recent unplanned server move, we investigated options for having not one, but two sites, for the “hub” systems for the NTP Pool. With 4000 NTP servers and hundreds of millions of clients using the system,

www.ntppool.org

 

Timezone 설정

sudo ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime

 

'Operating System' 카테고리의 다른 글

Minecraft server  (0) 2023.03.26
osx iso  (0) 2022.03.01
Install Ubuntu on Raspberry Pi  (0) 2021.09.21
EBS, ffmpeg, rtmpdump, Python (beutiful soup), crontab  (0) 2021.09.18
Windows 10 - License, Key  (0) 2021.07.10

[Web Browser (Microsoft Edge)]

 

1. Run 'Anaconda Prompt (Anaconda3)'

 

2. jupyter notebook --generate-config

 

3. Edit 'C:\Users\[username]\.jupyter\jupyter_notebook_config.py'

## Specify what command to use to invoke a web browser when opening the notebook.
#  If not specified, the default browser will be determined by the `webbrowser`
#  standard library module, which allows setting of the BROWSER environment
#  variable to override it.
#  Default: ''
c.NotebookApp.browser = '"C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" %s' # Microsoft Edge
#c.NotebookApp.browser = '"C:\Program Files\Google\Chrome\Application\chrome.exe" %s' # Chrome

 

 

[Start-up folder]

 

1. Run 'Anaconda Prompt (Anaconda3)'

 

2. jupyter notebook --generate-config

 

3. Edit 'C:\Users\[username]\.jupyter\jupyter_notebook_config.py'

   (use '/' instead of '\')

## The directory to use for notebooks and kernels.
#  Default: ''
c.NotebookApp.notebook_dir = 'C:/Workspace'

 

4. Go to 'C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Anaconda3 (64-bit)'

 

5. 'Jupyter Notebook (Anaconda3)' > (R) > (S) > Remove '%HOMEPATH%'

   'Jupyter Notebook (Anaconda3)' > (R) > (T) > Remove '"%USERPROFILE%/"'

C:\ProgramData\Anaconda3\python.exe C:\ProgramData\Anaconda3\cwp.py C:\ProgramData\Anaconda3 C:\ProgramData\Anaconda3\python.exe C:\ProgramData\Anaconda3\Scripts\jupyter-notebook-script.py "%USERPROFILE%/"

 

['Bad file descripter' error]

 

1. Run 'Anaconda Prompt (Anaconda3)' as admin

pip uninstall pyzmq
pip install pyzmq

 

'Tools' 카테고리의 다른 글

Minecraft + Python  (0) 2024.09.29
Jupyter Notebook: pip, venv, jupyter  (0) 2024.09.29
VS Code  (0) 2021.09.30

+ Recent posts