Files
homelab/k8s/apps/hexound/deployment.yaml
Ultradesu 24d4d34733
All checks were successful
Check with kubeconform / lint (push) Successful in 10s
Adjusted resources on all deployments
2025-07-18 13:46:54 +03:00

73 lines
1.7 KiB
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: hexound
spec:
replicas: 1
selector:
matchLabels:
app: hexound
template:
metadata:
labels:
app: hexound
spec:
volumes:
- name: hexound-repo
emptyDir: {}
- name: tmp-dir
emptyDir: {}
- name: run-dir
emptyDir: {}
- name: nginx-logs
emptyDir: {}
initContainers:
- name: git-cloner
image: alpine/git
resources:
requests:
memory: "32Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "200m"
command:
- git
- clone
- --depth=1
- https://github.com/house-of-vanity/hexound.ru.git
- /repo
volumeMounts:
- name: hexound-repo
mountPath: /repo
containers:
- name: hexound
image: trafex/php-nginx:3.8.0
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "256Mi"
cpu: "200m"
volumeMounts:
- name: hexound-repo
mountPath: /var/www/html
readOnly: true
- name: tmp-dir
mountPath: /tmp
- name: run-dir
mountPath: /run
- name: nginx-logs
mountPath: /var/lib/nginx/logs
securityContext:
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
runAsNonRoot: true
runAsUser: 101
runAsGroup: 101
ports:
- name: http
containerPort: 8080
protocol: TCP