Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix!(odoo): remove default storageClassName of nfs-client, fixes #55 #59

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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