Skip to content

Instantly share code, notes, and snippets.

View ImKunYoung's full-sized avatar

ImKunYoung ImKunYoung

View GitHub Profile
@ImKunYoung
ImKunYoung / 캐싱전략.md
Created October 10, 2023 15:14
캐싱 전략

272968038-90d5fb94-bb3f-4dd7-8f9f-71a803328578

@ImKunYoung
ImKunYoung / 아키텍처스타일.md
Last active October 10, 2023 15:14
아키텍처

272968392-5c0c3e99-0017-47f9-9c16-9f62dd3a2a0a

@ImKunYoung
ImKunYoung / 샤딩.md
Last active October 10, 2023 15:11
샤딩

273432382-dc928806-0436-472a-9f9a-0d2e97cb77df

@ImKunYoung
ImKunYoung / eks.md
Last active November 14, 2023 05:34
명령어
eksctl create cluster \
  --name 클러스터명 \
  --region ap-northeast-2 \
  --vpc-cidr=10.0.0.0/20
kubectl set env ds aws-node -n kube-system ENABLE_PREFIX_DELEGATION=true
@ImKunYoung
ImKunYoung / kafka-cheat-sheet.md
Created September 19, 2023 00:56 — forked from ursuad/kafka-cheat-sheet.md
Quick command reference for Apache Kafka

Kafka Topics

List existing topics

bin/kafka-topics.sh --zookeeper localhost:2181 --list

Describe a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic mytopic

Purge a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000

... wait a minute ...

@ImKunYoung
ImKunYoung / terminal-cheat-sheet.txt
Created September 19, 2023 00:55 — forked from cferdinandi/terminal-cheat-sheet.txt
Terminal Cheat Sheet
# Terminal Cheat Sheet
pwd # print working directory
ls # list files in directory
cd # change directory
~ # home directory
.. # up one directory
- # previous working directory
help # get help
-h # get help
@ImKunYoung
ImKunYoung / CoreDns 확인.md
Last active November 13, 2023 09:10
리눅스 명령어

nslookup <서비스이름>.<네임스페이스>.svc.cluster.local
nslookup my-service.default.svc.cluster.local

1. **Setup & Image Management**:
- 🏗️ `docker build -t myapp .` ➡️ Build image from a Dockerfile.
- 📦 `docker pull ubuntu` ➡️ Fetch an image from a registry.
- 📤 `docker push myuser/myapp` ➡️ Store your image remotely.
- 🗂️ `docker images` ➡️ List all local images.
- 📸 `docker rmi image_name` ➡️ Remove an image.
- 🧠 `docker history image_name` ➡️ See layers of an image.
- 📋 `docker tag source_image target_image` ➡️ Tag an image.
- 📦 `docker save -o outputfile.img myimage` ➡️ Save image to a file.
- 🎁 `docker load -i inputfile.img` ➡️ Load image from a file.
🌞 Morning 117 commits █▉░░░░░░░░░░░░░░░░░░░ 9.3%
🌆 Daytime 510 commits ████████▌░░░░░░░░░░░░ 40.6%
🌃 Evening 520 commits ████████▋░░░░░░░░░░░░ 41.4%
🌙 Night 108 commits █▊░░░░░░░░░░░░░░░░░░░ 8.6%