一键导入
kubernetes
Run local Kubernetes clusters with kind on Bluefin DX for cloud-native development.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run local Kubernetes clusters with kind on Bluefin DX for cloud-native development.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Create, enter, and manage Distrobox containers for mutable package installation on Bluefin.
ZFS administration on Bluefin — pools, datasets, snapshots, and delivery options for an immutable host that does not ship ZFS kernel modules.
Run, build, and manage OCI containers rootlessly on Bluefin — including Quadlets for persistent systemd-managed services.
Run self-hosted services on Bluefin DX using Podman Quadlets and linuxserver.io containers — persistent, auto-updating, systemd-managed.
Install and manage CLI tools with Homebrew — the primary CLI package manager on Bluefin.
Manage GNOME extensions, gsettings, and desktop customizations on Bluefin — including which settings Bluefin owns vs. which are safe to change.
| name | kubernetes |
| description | Run local Kubernetes clusters with kind on Bluefin DX for cloud-native development. |
| domain | cloud-native |
Bluefin DX ships with kind (Kubernetes IN Docker), kubectl, and helm pre-installed
via Homebrew. Use kind to spin up local clusters for development and testing.
Load with: point your agent at this file.
# Create a cluster
kind create cluster --name dev
# List clusters
kind get clusters
# Load a local image into a kind cluster (avoids registry push)
kind load docker-image myimage:latest --name dev
# Delete a cluster
kind delete cluster --name dev
# Get kubeconfig for a cluster
kind get kubeconfig --name dev > ~/.kube/config
# Use a specific Kubernetes version
kind create cluster --image kindest/node:v1.31.0
Create a kind-config.yaml:
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
- role: worker
- role: worker
kind create cluster --config kind-config.yaml --name multinode
kubectl get pods -A # all pods, all namespaces
kubectl get nodes # node status
kubectl describe pod <name> # detailed pod info
kubectl logs <pod> -f # follow logs
kubectl apply -f manifest.yaml # apply a manifest
kubectl delete -f manifest.yaml # delete resources
# Install nginx ingress controller for kind
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml
KIND_EXPERIMENTAL_PROVIDER=podman if kind doesn't auto-detectujust recipes if available for project-specific cluster setupk9s (if installed) provides a great TUI for cluster management: k9s