Skip to content

Commit

Permalink
fix!(odoo): remove default storageClassName of nfs-client, fixes #55
Browse files Browse the repository at this point in the history
  • Loading branch information
theangryangel committed Jun 17, 2024
1 parent 9bb6d06 commit 0fa8f3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/odoo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ $ helm install my-release glodo/odoo -f ./helm-values.yaml
| persistence.existingClaim | string | `""` | |
| persistence.name | string | `"storage"` | |
| persistence.size | string | `"100Gi"` | |
| persistence.storageClassName | string | `"nfs-client"` | |
| persistence.storageClassName | string | `""` | |
| queue.affinity | object | `{}` | |
| queue.config | string | `"[options]\nserver_wide_modules = queue_job,web\nworkers = 2\nmax_cron_threads = 1\nlimit_time_cpu = 14400\nlimit_time_real = 14400\nlimit_time_real_cron = 14400\n"` | |
| queue.enabled | bool | `false` | enable a second deployment, specifically running oca/queue_job |
Expand Down
2 changes: 1 addition & 1 deletion charts/odoo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ persistence:
# -- enable /var/lib/odoo persistence, without persistence it will be temporary - and that's a bad thing!
enabled: true
name: "storage"
storageClassName: "nfs-client"
storageClassName: ""
existingClaim: ""
annotations: {}
# -- when running deployment with replicas > 1 ReadWriteMany is a requirement, if you are in an environment without ReadWriteMany available then you will need to find an alternative solution i.e. https://github.com/camptocamp/odoo-cloud-platform/tree/14.0/base_attachment_object_storage
Expand Down

0 comments on commit 0fa8f3c

Please sign in to comment.