caas/kustomize/deployment.yaml
Ryan Cavicchioni b0f7588610
All checks were successful
Gitea Actions Demo / bake (push) Successful in 2m7s
add Kubernetes manifests
2025-03-07 21:43:36 -06:00

24 lines
407 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: caas
spec:
replicas: 2
selector:
matchLabels:
app: caas
template:
metadata:
labels:
app: caas
spec:
containers:
- name: caas
image: git.kill0.net/ryanc/caas:latest
imagePullPolicy: IfNotPresent
ports:
- name: http
containerPort: 80
protocol: TCP