Commit new Chart releases for TrueCharts

Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
This commit is contained in:
TrueCharts-Bot 2023-08-25 08:31:33 +00:00
parent 276d346fed
commit ba04745a28
12 changed files with 2471 additions and 0 deletions

View File

@ -0,0 +1,18 @@
**Important:**
*for the complete changelog, please refer to the website*
## [odoo-14.0.0](https://github.com/truecharts/charts/compare/odoo-13.0.1...odoo-14.0.0) (2023-08-25)
## [odoo-13.0.1](https://github.com/truecharts/charts/compare/odoo-13.0.0...odoo-13.0.1) (2023-08-11)
### Fix
- Move to Incubator ([#11413](https://github.com/truecharts/charts/issues/11413))

View File

@ -0,0 +1,33 @@
apiVersion: v2
appVersion: "16.0.0"
dependencies:
- name: common
repository: https://library-charts.truecharts.org
version: 14.0.1
deprecated: false
description: All-in-one business software. Beautiful. Easy-to-use. CRM, Accounting, PM, HR, Procurement, Point of Sale, MRP, Marketing, etc.
home: https://truecharts.org/charts/incubator/odoo
icon: https://truecharts.org/img/hotlink-ok/chart-icons/odoo.png
keywords:
- odoo
- crm
- pm
- hr
- accounting
- mrp
- marketing
kubeVersion: ">=1.16.0-0"
maintainers:
- email: info@truecharts.org
name: TrueCharts
url: https://truecharts.org
name: odoo
sources:
- https://github.com/truecharts/charts/tree/master/charts/incubator/odoo
- https://github.com/odoo/docker
type: application
version: 14.0.0
annotations:
truecharts.org/catagories: |
- media
truecharts.org/SCALE-support: "true"

View File

@ -0,0 +1,27 @@
# README
## General Info
TrueCharts can be installed as both *normal* Helm Charts or as Apps on TrueNAS SCALE.
However only installations using the TrueNAS SCALE Apps system are supported.
For more information about this App, please check the docs on the TrueCharts [website](https://truecharts.org/charts/incubator/)
**This chart is not maintained by the upstream project and any issues with the chart should be raised [here](https://github.com/truecharts/charts/issues/new/choose)**
## Support
- Please check our [quick-start guides for TrueNAS SCALE](https://truecharts.org/manual/SCALE/guides/scale-intro).
- See the [Website](https://truecharts.org)
- Check our [Discord](https://discord.gg/tVsPTHWTtr)
- Open a [issue](https://github.com/truecharts/charts/issues/new/choose)
---
## Sponsor TrueCharts
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!
*All Rights Reserved - The TrueCharts Project*

View File

@ -0,0 +1,4 @@
## [odoo-14.0.0](https://github.com/truecharts/charts/compare/odoo-13.0.1...odoo-14.0.0) (2023-08-25)

View File

@ -0,0 +1,8 @@
All-in-one business software. Beautiful. Easy-to-use. CRM, Accounting, PM, HR, Procurement, Point of Sale, MRP, Marketing, etc.
This App is supplied by TrueCharts, for more information visit the manual: [https://truecharts.org/charts/incubator/odoo](https://truecharts.org/charts/incubator/odoo)
---
TrueCharts can only exist due to the incredible effort of our staff.
Please consider making a [donation](https://truecharts.org/sponsor) or contributing back to the project any way you can!

Binary file not shown.

View File

@ -0,0 +1,68 @@
image:
repository: tccr.io/truecharts/odoo
pullPolicy: IfNotPresent
tag: v16.0.0@sha256:c1936984eeb8f504f5ebe74cf972319d6cd619ecbdf09249179ecdee2feeecf3
# test for root
securityContext:
container:
runAsNonRoot: false
readOnlyRootFilesystem: false
runAsUser: 0
runAsGroup: 0
service:
main:
ports:
main:
port: 8069
odoo:
enabled: true
ports:
xmlrpcs:
enabled: true
port: 8071
longpolling:
enabled: true
port: 8072
odoo:
admin:
passwd: admin
db:
filter: ^mycompany.*$
smtp:
server: ""
port: 587
user: ""
password: ""
ssl: "False"
from: ""
persistence:
odoo:
enabled: true
mountPath: "/var/lib/odoo"
addons:
enabled: true
mountPath: "/mnt/extra-addons"
odoo-config:
enabled: true
type: configmap
objectName: odoo-config
targetSelector:
main:
main:
mountPath: /etc/odoo/odoo.conf
subPath: odoo.conf
readOnly: true
# Enabled postgres
cnpg:
main:
enabled: true
user: odoo
database: postgres
portal:
open:
enabled: true

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1 @@
{{- include "tc.v1.common.lib.chart.notes" $ -}}

View File

@ -0,0 +1,58 @@
{{/* Define the configmap */}}
{{- define "odoo.configmaps" -}}
{{- $fullname := (include "tc.v1.common.lib.chart.names.fullname" $) -}}
{{- $admin := .Values.odoo.admin -}}
{{- $db := .Values.odoo.db -}}
{{- $smtp := .Values.odoo.smtp -}}
{{- $pgdb := .Values.cnpg.main.database -}}
{{- $pguser := .Values.cnpg.main.user -}}
{{- $pgpassword := .Values.cnpg.main.creds.password | trimAll "\"" -}}
{{- $pghost := .Values.cnpg.main.creds.host | trimAll "\"" -}}
odoo-config:
enabled: true
data:
odoo.conf: |
[options]
addons_path = {{ .Values.persistence.addons.mountPath }}
data_dir = {{ .Values.persistence.odoo.mountPath }}
admin_passwd = {{ $admin.passwd }}
longpolling_port = {{ .Values.service.odoo.ports.longpolling.port }}
xmlrpc = True
xmlrpc_interface =
xmlrpc_port = {{ .Values.service.main.ports.main.port }}
xmlrpcs = True
xmlrpcs_interface =
xmlrpcs_port = {{ .Values.service.odoo.ports.xmlrpcs.port }}
db_host = {{ $pghost }}
db_port = 5432
db_user = {{ $pguser }}
db_password = {{ $pgpassword }}
dbfilter = {{ $db.dbfilter }}
csv_internal_sep = ,
db_maxconn = 64
debug_mode = False
limit_memory_hard = 2684354560
limit_memory_soft = 2147483648
limit_request = 8192
limit_time_cpu = 60
limit_time_real = 120
list_db = True
log_db = False
log_handler = [':INFO']
log_level = info
logfile = None
max_cron_threads = 2
osv_memory_age_limit = 1.0
osv_memory_count_limit = False
smtp_server = {{ $smtp.server }}
smtp_port = {{ $smtp.port }}
smtp_user = {{ $smtp.user }}
smtp_password = {{ $smtp.password }}
smtp_ssl = {{ $smtp.ssl }}
email_from = {{ $smtp.from }}
workers = 0
{{- end -}}

View File

@ -0,0 +1,11 @@
{{/* Make sure all variables are set properly */}}
{{- include "tc.v1.common.loader.init" . -}}
{{/* Render configmaps for all pods */}}
{{- $configmaps := include "odoo.configmaps" . | fromYaml -}}
{{- if $configmaps -}}
{{- $_ := mustMergeOverwrite .Values.configmap $configmaps -}}
{{- end -}}
{{/* Render the templates */}}
{{- include "tc.v1.common.loader.apply" . -}}

View File