40 lines
784 B
YAML
40 lines
784 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nimh-static
|
|
|
|
spec:
|
|
replicas: 1
|
|
|
|
selector:
|
|
matchLabels:
|
|
app: nimh-static
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nimh-static
|
|
spec:
|
|
containers:
|
|
- name: nginx
|
|
image: nginx:stable
|
|
|
|
ports:
|
|
- containerPort: 80
|
|
|
|
volumeMounts:
|
|
- name: static-files
|
|
mountPath: /var/nimh-static/site
|
|
readOnly: true
|
|
|
|
- name: nginx-config
|
|
mountPath: /etc/nginx/conf.d/default.conf
|
|
subPath: default.conf
|
|
volumes:
|
|
- name: static-files
|
|
configMap:
|
|
name: nimh-static-files
|
|
|
|
- name: nginx-config
|
|
configMap:
|
|
name: nimh-static-nginx
|