You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- apiVersion: v1
- kind: PersistentVolume
- metadata:
- name: airflow-dags-pv
- spec:
- capacity:
- storage: 10Gi
- volumeMode: Filesystem
- accessModes:
- - ReadWriteMany
- persistentVolumeReclaimPolicy: Retain
- storageClassName: nfs-airflow
- nfs:
- path: /srv/nfs/airflow/dags
- server: 10.10.0.85
- ---
- apiVersion: v1
- kind: PersistentVolumeClaim
- metadata:
- name: airflow-dags-pvc
- namespace: airflow
- spec:
- accessModes:
- - ReadWriteMany
- storageClassName: nfs-airflow
- volumeName: airflow-dags-pv
- resources:
- requests:
- storage: 10Gi
|