awx-on-k3s/git/deployment.yaml
2023-01-24 22:29:57 +09:00

32 lines
629 B
YAML

---
apiVersion: apps/v1
kind: Deployment
metadata:
name: git
labels:
app: git
spec:
replicas: 1
selector:
matchLabels:
app: git
template:
metadata:
labels:
app: git
spec:
containers:
- name: git
image: gitea/gitea:latest
ports:
- name: gitea-http
containerPort: 3000
- name: gitea-ssh
containerPort: 22
volumeMounts:
- name: git-volume
mountPath: /data
volumes:
- name: git-volume
persistentVolumeClaim:
claimName: git-claim