mirror of
https://github.com/Expand-sys/awx-on-k3s
synced 2025-12-15 13:32:14 +11:00
32 lines
629 B
YAML
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
|