initial setup

This commit is contained in:
2024-02-03 14:39:45 +01:00
parent 742b883256
commit 981f86f1c7
67 changed files with 274 additions and 2607 deletions

View File

@@ -0,0 +1,35 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: quartz-physics
spec:
selector:
matchLabels:
app: quartz-physics
template:
metadata:
labels:
app: quartz-physics
spec:
containers:
- name: quartz-physics
image: nginx
resources:
limits:
memory: "128Mi"
cpu: "500m"
ports:
- containerPort: 80
volumeMounts:
- mountPath: /usr/share/nginx/html
name: quartz-physics
- mountPath: /etc/nginx/nginx.conf
subPath: nginx.conf
name: nginx
volumes:
- name: quartz-physics
persistentVolumeClaim:
claimName: quartz-nfs
- name: nginx
configMap:
name: nginx-config