IllumiDesk / helm-chart

The official IllumiDesk helm-chart.
Apache License 2.0
0 stars 5 forks source link

Refactor NFS and local storage options #123

Closed jgwerner closed 3 years ago

jgwerner commented 3 years ago

Refactor the helm-chart so that the user has the option to enable NFS or local storage. The use-case is to support either NFS for cloud deployments or local storage for dev deployments such as with kind.

For example change from:

allowNFS:
  enabled: false
  # Domain for the NFS Server
  server: ''
  # Specifies local vs network file system
  type: 'local'
  # specify mount path
  path: /

To:

allowNFS:
  enabled: false
  # Domain for the NFS Server
  server: ''
  # specify mount path
  path: /

allowLocal:
  enabled: true