Skip to content

Commit

Permalink
[UPD] changelog update
Browse files Browse the repository at this point in the history
  • Loading branch information
az-adhoc committed Dec 16, 2024
1 parent 54af09e commit 0c0e99d
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 5 deletions.
14 changes: 11 additions & 3 deletions charts/adhoc-odoo/v0.2.5/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,17 @@ Features:
- Add new app tye annotation: `adhoc.appType` (prod, test, etc)
- Add initial support for Cloud-Native-pg (**CloudNativePG operator** must be installed before [+info](https://github.com/cloudnative-pg/charts))

## *0.2.4*
- Add new labels:
- `adhoc.ar/service-level`: Adhoc Service level (standard, advance, premium)
- `adhoc.ar/tier`: Tier (prod, test, etc)
- `adhoc.ar/odoo-version`: Odoo base version (`17.0`, `18.0`)
- Remove warning on "Skipped a TLS block"

## *0.2.3*

Features:

- Add configuration-snippet with some security improvements
- Add new service level annotation: `adhoc.serviceLevel` (standard, advance, premium)
- Add "Managed pull secret" (DockerHub credentials for odoo)
- Initial support for minikube
- Update ingressClassName
- Fix HelmApp Version
14 changes: 14 additions & 0 deletions charts/adhoc-odoo/v0.2.6/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,17 @@ Features:

- Add configuration-snippet with some security improvements
- Add new service level annotation: `adhoc.serviceLevel` (standard, advance, premium)
- Add new labels:
- `adhoc.ar/service-level`: Adhoc Service level (standard, advance, premium)
- `adhoc.ar/tier`: Tier (prod, test, etc)
- `adhoc.ar/odoo-version`: Odoo base version (`17.0`, `18.0`)
- Remove warning on "Skipped a TLS block"

## *0.2.3*

Features:

- Add "Managed pull secret" (DockerHub credentials for odoo)
- Initial support for minikube
- Update ingressClassName
- Fix HelmApp Version
8 changes: 6 additions & 2 deletions charts/adhoc-odoo/v0.2.6/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,10 @@ spec:
{{- include "adhoc-odoo.adhocLabels" . | nindent 8 }}
spec:
serviceAccountName: {{ include "adhoc-odoo.serviceAccountName" . }}
{{ with .Values.podSecurityContext }}
securityContext:
{{- toYaml .Values.podSecurityContext | nindent 8 }}
{{- toYaml . | nindent 8 }}
{{ end }}
{{- if .Values.cloudNativePG.enabled }}
initContainers:
- name: wait-for-postgres
Expand All @@ -40,8 +42,10 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}
{{- with .Values.securityContext }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
{{- toYaml . | nindent 12 }}
{{- end }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- if .Values.devMode }}
Expand Down

0 comments on commit 0c0e99d

Please sign in to comment.