toy/kustomize/deployment.yaml
Ryan Cavicchioni 72d77a5d7a
All checks were successful
Gitea Actions Demo / release-image (push) Successful in 1m1s
add kustomize
2024-07-02 16:32:38 -05:00

25 lines
379 B
YAML

---
kind: Deployment
apiVersion: apps/v1
metadata:
name: toy
labels:
app: toy
spec:
replicas: 3
selector:
matchLabels:
app: toy
template:
metadata:
labels:
app: toy
spec:
containers:
- name: toy
image: git.kill0.net/ryanc/toy:latest
ports:
- name: web
containerPort: 4567