2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Kubernetes(K8S)の用語集

Last updated at Posted at 2025-04-20

はじめに

kubenates(K8S)を現場で使い始めたので、新しく学んでいる最中です。
理解していったことなどは、都度更新していきます。

公式ドキュメント

基本用語

pod

コンテナの最小単位で、1つ以上のコンテナをまとめて実行する単位のことです。

Node

実際にコンテナが動いている仮想 or 物理マシン

Cluster

複数のノードをまとめたもの。K8s全体の構成単位。

container

アプリケーションの実行単位。Dockerなどで作られる。

管理系

Deployment

Podのデプロイとスケーリングを自動で管理してくれる仕組み

cronjob

一時的な処理を1回(Job)または定期実行(CronJob)するためのもの

ReplicaSet

同じPodを何個動かすかを管理する役割。Deploymentにより生成される

StatefulSet

永続データが必要な状態を持つPodを管理。例:DB系。

DaemonSet

各Nodeに1つずつPodを配置するのに使う。例:ログ収集系。

設定、制御

Namespace

複数のプロジェクトや環境を分けて管理するための空間です。

通信

Service

Podに安定してアクセスするための入り口(IP・ポート)などを提供

Ingress

外部からのHTTP/HTTPS通信をルーティングする仕組み。

Endpoint

ServiceとPodの紐付けに使われる実体的な情報。

制御 & モニタリング

kubectl

CLIツールで、Kubernetesにコマンドを送るとき使います。

ConfigMap

アプリの設定ファイルなどをPodに注入する仕組み。

Secret

パスワードやAPIキーなどの機密情報を安全に渡すためのリソース。

Volume

データをコンテナの外で永続化する仕組み。

参考資料

ChatGPT参照

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?