بنقرة واحدة
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