Initial commit

This commit is contained in:
Vloldik
2025-05-06 19:21:00 +03:00
commit 5f17ce5f03
28 changed files with 625 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: adminer
labels:
app: adminer
spec:
selector:
matchLabels:
app: adminer
template:
metadata:
labels:
app: adminer
spec:
containers:
- name: adminer
image: docker.io/library/adminer:5.2.1
ports:
- containerPort: 8080
resources:
requests:
cpu: "0.1"
memory: 50Mi
limits:
cpu: "0.1"
memory: 100Mi