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.
 
 
 
 

30 rivejä
555 B

  1. apiVersion: v1
  2. kind: PersistentVolume
  3. metadata:
  4. name: airflow-logs-pv
  5. spec:
  6. capacity:
  7. storage: 20Gi
  8. volumeMode: Filesystem
  9. accessModes:
  10. - ReadWriteMany
  11. persistentVolumeReclaimPolicy: Retain
  12. storageClassName: nfs-airflow
  13. nfs:
  14. path: /srv/nfs/airflow/logs
  15. server: 10.10.0.85
  16. ---
  17. apiVersion: v1
  18. kind: PersistentVolumeClaim
  19. metadata:
  20. name: airflow-logs-pvc
  21. namespace: airflow
  22. spec:
  23. accessModes:
  24. - ReadWriteMany
  25. storageClassName: nfs-airflow
  26. volumeName: airflow-logs-pv
  27. resources:
  28. requests:
  29. storage: 20Gi