Files
Kjeld Schouten 899cfb71b3 add common docs
2025-10-15 15:11:59 +02:00

1.3 KiB

title
title
NFS

:::note

  • Examples under each key are only to be used as a placement guide
  • See the Full Examples section for complete examples.

:::

Appears in

  • .Values.persistence.$name

:::tip

  • See available persistence keys here.
  • This options apply only when type: nfs.

:::


path

Define the nfs export share path

Key persistence.$name.path
Type string
Required
Helm tpl
Default ""

Example

persistence:
  nfs-vol:
    path: /path/of/nfs/share

server

Define the nfs server

Key persistence.$name.server
Type string
Required
Helm tpl
Default ""

Example

persistence:
  nfs-vol:
    server: nfs-server

Full Examples

persistence:
  nfs-vol:
    enabled: true
    type: nfs
    path: /path/of/nfs/share
    server: nfs-server