This commit is contained in:
Sense T
2022-10-01 09:09:30 +00:00
parent 938db68be9
commit ffef0a5d92
19 changed files with 429 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
apiVersion: apps/v1
kind: Deployment
metadata:
name: pac-server
spec:
selector:
matchLabels:
app: pac-server
template:
metadata:
labels:
app: pac-server
spec:
volumes:
- name: conf
configMap:
name: pac-config
defaultMode: 420
containers:
- name: nginx
image: nginx
resources:
limits:
cpu: 500m
memory: 256Mi
volumeMounts:
- mountPath: /usr/share/nginx/html
name: conf