Deploy apps to k8s with deployments ingress and configmaps
Scanned 9/10/2026
Install to Claude Code
npx -y skills add LoopyLuci/Skills --skill kubernetes-deployment --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Kubernetes Deployment?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/loopyluci-kubernetes-deployment)More formats (shields.io, HTML) on the badges page.
---
name: kubernetes-deployment
description: "Deploy apps to k8s with deployments ingress and configmaps"
---
# Kubernetes Deployment
## Deployment
```yaml
apiVersion: apps/v1
kind: Deployment
metadata: { name: myapp }
spec:
replicas: 3
selector: { matchLabels: { app: myapp } }
template:
metadata: { labels: { app: myapp } }
spec:
containers:
- name: myapp
image: myapp:latest
ports: [{ containerPort: 8000 }]
```
## Apply
```bash
kubectl apply -f deployment.yaml
kubectl get pods
kubectl logs deployment/myapp -f
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!