mirror of
https://github.com/ChristianLempa/boilerplates.git
synced 2024-11-29 11:43:48 +01:00
28 lines
509 B
YAML
28 lines
509 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: nfs-web
|
|
spec:
|
|
replicas: 1
|
|
selector:
|
|
matchLabels:
|
|
app: nfs-web
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app: nfs-web
|
|
spec:
|
|
containers:
|
|
- name: nfs-web
|
|
image: nginx
|
|
ports:
|
|
- name: web
|
|
containerPort: 80
|
|
volumeMounts:
|
|
- name: nfs
|
|
mountPath: /usr/share/nginx/html
|
|
volumes:
|
|
- name: nfs
|
|
persistentVolumeClaim:
|
|
claimName: nfs
|