npx claudepluginhub pluginagentmarketplace/custom-plugin-kubernetes --plugin kubernetes-assistant# /quickstart - Get Started with Kubernetes Start your Kubernetes journey with fundamentals and best practices. ## What This Command Does Provides: - ✅ Kubernetes basics overview - ✅ Local setup guide - ✅ First deployment tutorial - ✅ Core concepts explained - ✅ Next steps recommendation ## Prerequisites - Docker installed - kubectl installed - 4GB RAM minimum - 20GB disk space ## Quick Setup ### Option 1: Kind (Kubernetes in Docker) ### Option 2: Minikube ### Option 3: Managed Service - **AWS EKS**: Amazon Elastic Kubernetes Service - **Google GKE**: Google Kubernetes Engine - *...
/quickstartDisplays deprecation notice for bd quickstart and links to docs on getting started, workflows, basic commands, dependency management, and git integration.
/quickstartStarts interactive Weaviate Cloud onboarding: sign up, create cluster, configure credentials, load data, and learn commands.
/quickstartRegisters user as an agent with specified or prompted role, module, and intent, then starts a session. Supports --name, --role, --module, --intent flags and common roles like implementer, planner.
/quickstartDisplays a concise quick start reference for the ba task tracking CLI, covering core workflow, commands, dependencies, issue types, and initialization check.
/quickstartInteractive onboarding for new clarc users. Guides through the first 5 minutes: explains the most important workflows, recommends which commands to start with, and gives a practical tour with concrete examples.
/quickstartDisplays a concise quick start reference for the ba task tracking CLI, covering core workflow, commands, dependencies, issue types, and initialization check.
Start your Kubernetes journey with fundamentals and best practices.
Provides:
# Install kind
curl -Lo ./kind https://kind.sigs.k8s.io/dl/latest/kind-linux-amd64
chmod +x ./kind
# Create cluster
./kind create cluster --name my-cluster
# Verify
kubectl cluster-info
kubectl get nodes
# Install minikube
curl -LO https://github.com/kubernetes/minikube/releases/latest/download/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
# Start cluster
minikube start --cpus=4 --memory=8192
# Verify
kubectl get nodes
# Create namespace
kubectl create namespace tutorial
# Deploy nginx
kubectl run nginx --image=nginx:latest -n tutorial
# Expose service
kubectl expose pod nginx --port=80 --type=NodePort -n tutorial
# Check service
kubectl get svc -n tutorial
# Access application
# For kind/minikube:
kubectl port-forward -n tutorial svc/nginx 8080:80
# Then visit http://localhost:8080
# Get resources
kubectl get pods
kubectl get services
kubectl get deployments
# Describe resources
kubectl describe pod pod-name
kubectl describe service service-name
# View logs
kubectl logs pod-name
kubectl logs -f pod-name
# Execute in pod
kubectl exec -it pod-name -- /bin/bash
Fundamentals (Week 1)
Intermediate (Week 2-3)
Advanced (Week 4+)
/cluster-setup - Learn production cluster setup/best-practices - Kubernetes best practices/troubleshoot - Debugging common issuesStart exploring with: kubectl get all --all-namespaces