Skip to main content
DevTools24

Kubernetes YAML生成ツール

視覚的にKubernetes YAMLマニフェストを生成します。Deployment、Service、ConfigMap、Secret、Ingress、PVCを作成。

kubectl apply -f my-app.yaml

Kubernetes Manifests - 技術的な詳細

Kubernetes uses YAML manifests to define resources. Common resources include Deployments (running containers), Services (networking), ConfigMaps (configuration), and Secrets (sensitive data).

コマンドラインでの代替方法

kubectl apply -f manifest.yaml
kubectl get pods
kubectl describe deployment my-app

参照

公式仕様を見る