Network File System

This Driver provides a connection to an existing Network File System (NFS) volume. It generates a Kubernetes PersistentVolumeClaim (PVC)  and PersistentVolume (PV)  object for the volume type nfs  and a capacity of 1T.

Property Description
Resource type volume
Account type None

Inputs

Values

Name Type Description
path string The NFS path, e.g. /my-nfs-volume
server string The name of the NFS server, e.g. my-nfs-server.example.com

Secrets

None

Example

This Resource Definition uses the volume-nfs Driver to provide volume Resources:


volume-nfs.yaml (view on GitHub ) :

apiVersion: entity.humanitec.io/v1b1
kind: Definition
metadata:
  id: volume-nfs
entity:
  type: volume
  name: volume-nfs
  driver_type: humanitec/volume-nfs
  driver_inputs:
    values:
      path: "/"
      server: nfs-server.default.svc.cluster.local
  criteria:
  - class: nfs
Top