Skip to content

Commit

Permalink
Merge pull request 'Merge Helm Chart release/v4.3.0 into master' (#4)…
Browse files Browse the repository at this point in the history
… from release/v4.3.0 into master
  • Loading branch information
agolybev committed Oct 17, 2024
2 parents 2d2452a + bbd947c commit cd7384a
Show file tree
Hide file tree
Showing 9 changed files with 50 additions and 25 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# Change log

## 4.3.0

### New Features

* Added a signal control processing handler as the first process in Docs containers
* Added the ability to set up the `terminationGracePeriodSeconds`
* Added the ability to generate a hash that will be appended to the ONLYOFFICE Docs version in the request URLs

### Changes

* Released ONLYOFFICE Docs [v8.2.0](https://github.com/ONLYOFFICE/DocumentServer/blob/master/CHANGELOG.md#820)

## 4.2.2

### Changes
Expand Down
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ description: Helm chart for installing ONLYOFFICE Docs in Kubernetes

type: application

version: 4.2.2
version: 4.3.0

appVersion: 8.1.3
appVersion: 8.2.0
25 changes: 14 additions & 11 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sources/shutdown-ds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ spec:
defaultMode: 0755
containers:
- name: shutdown-ds
image: onlyoffice/docs-utils:8.1.3-1
image: onlyoffice/docs-utils:8.2.0-1
command: ["/bin/sh", "-c"]
args: ["/scripts/stop.sh"]
volumeMounts:
Expand Down
1 change: 1 addition & 0 deletions templates/configmaps/documentserver.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ metadata:
annotations: {{- include "ds.annotations.commonAnnotations" ( dict "keyName" .Values.commonAnnotations "context" $ ) | nindent 4 }}
{{- end }}
data:
APPLICATION_NAME: {{ .Values.product.name }}
DB_TYPE: {{ template "ds.db.type" . }}
DB_USER: {{ .Values.connections.dbUser }}
DB_HOST: {{ .Values.connections.dbHost }}
Expand Down
1 change: 1 addition & 0 deletions templates/deployments/converter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ spec:
configMap:
name: {{ .Values.extraThemes.configMap }}
{{- end }}
terminationGracePeriodSeconds: {{ .Values.converter.terminationGracePeriodSeconds }}
{{- with .Values.converter.initContainers }}
initContainers:
{{- toYaml . | nindent 8 }}
Expand Down
1 change: 1 addition & 0 deletions templates/deployments/docservice.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ spec:
configMap:
name: ds-welcome-page
{{- end }}
terminationGracePeriodSeconds: {{ .Values.docservice.terminationGracePeriodSeconds }}
{{- with .Values.docservice.initContainers }}
initContainers:
{{- toYaml . | nindent 8 }}
Expand Down
1 change: 1 addition & 0 deletions templates/statefulset/example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ spec:
imagePullSecrets:
- name: {{ .Values.imagePullSecrets }}
{{- end }}
terminationGracePeriodSeconds: {{ .Values.example.terminationGracePeriodSeconds }}
containers:
- name: example
image: {{ .Values.example.image.repository }}:{{ .Values.example.image.tag }}
Expand Down
28 changes: 17 additions & 11 deletions values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -468,6 +468,8 @@ docservice:
## periodSeconds: 15
## selectPolicy: Max
behavior: {}
## docservice.terminationGracePeriodSeconds The time to terminate gracefully during which the Docservice Pod will have the `Terminating` status
terminationGracePeriodSeconds: 30
## Docservice initContainers parameters
## Containers that run before docservice and proxy containers in a Pod
## ref:https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
Expand All @@ -488,7 +490,7 @@ docservice:
## https://github.com/ONLYOFFICE/Kubernetes-Docs#4-parameters
repository: onlyoffice/docs-docservice-de
## docservice.image.tag docservice container image tag
tag: 8.1.3-1
tag: 8.2.0-1
## docservice.image.pullPolicy docservice container image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the Docservice container
Expand Down Expand Up @@ -637,7 +639,7 @@ proxy:
## https://github.com/ONLYOFFICE/Kubernetes-Docs#4-parameters
repository: onlyoffice/docs-proxy-de
## proxy.image.tag proxy container image tag
tag: 8.1.3-1
tag: 8.2.0-1
## proxy.image.pullPolicy proxy container image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the Proxy container
Expand Down Expand Up @@ -860,6 +862,8 @@ converter:
## periodSeconds: 15
## selectPolicy: Max
behavior: {}
## converter.terminationGracePeriodSeconds The time to terminate gracefully during which the Converter Pod will have the `Terminating` status
terminationGracePeriodSeconds: 30
## Converter initContainers parameters
## Containers that run before converter container in a Pod
## ref:https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
Expand All @@ -879,7 +883,7 @@ converter:
## https://github.com/ONLYOFFICE/Kubernetes-Docs#4-parameters
repository: onlyoffice/docs-converter-de
## converter.image.tag converter container image tag
tag: 8.1.3-1
tag: 8.2.0-1
## converter.image.pullPolicy converter container image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the Converter container
Expand Down Expand Up @@ -1011,12 +1015,14 @@ example:
## example.tolerations Tolerations for Example Pods assignment
## If set to, it takes priority over the `tolerations`
tolerations: []
## example.terminationGracePeriodSeconds The time to terminate gracefully during which the Example Pod will have the `Terminating` status
terminationGracePeriodSeconds: 30
## Example container image parameters
image:
## example.image.repository example container image name
repository: onlyoffice/docs-example
## example.image.tag example container image tag
tag: 8.1.3-1
tag: 8.2.0-2
## example.image.pullPolicy example container image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the Example container
Expand Down Expand Up @@ -1156,7 +1162,7 @@ install:
## install.job.image.repository Job by pre-install ONLYOFFICE Docs image repository
repository: onlyoffice/docs-utils
## install.job.image.tag Job by pre-install ONLYOFFICE Docs image tag
tag: 8.1.3-1
tag: 8.2.0-1
## install.job.image.pullPolicy Job by pre-install ONLYOFFICE Docs image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the pre-install container
Expand Down Expand Up @@ -1237,7 +1243,7 @@ upgrade:
## upgrade.job.image.repository Job by upgrade image repository
repository: onlyoffice/docs-utils
## upgrade.job.image.tag Job by upgrade image tag
tag: 8.1.3-1
tag: 8.2.0-1
## upgrade.job.image.pullPolicy Job by upgrade image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the pre-upgrade container
Expand Down Expand Up @@ -1326,7 +1332,7 @@ rollback:
## rollback.job.image.repository Job by rollback image repository
repository: onlyoffice/docs-utils
## rollback.job.image.tag Job by rollback image tag
tag: 8.1.3-1
tag: 8.2.0-1
## rollback.job.image.pullPolicy Job by rollback image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the pre-rollback container
Expand Down Expand Up @@ -1415,7 +1421,7 @@ delete:
## delete.job.image.repository Job by delete image repository
repository: onlyoffice/docs-utils
## delete.job.image.tag Job by delete image tag
tag: 8.1.3-1
tag: 8.2.0-1
## delete.job.image.pullPolicy Job by delete image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the pre-delete container
Expand Down Expand Up @@ -1496,7 +1502,7 @@ clearCache:
## clearCache.job.image.repository Job by Clear Cache ONLYOFFICE Docs image repository
repository: onlyoffice/docs-utils
## clearCache.job.image.tag Job by Clear Cache ONLYOFFICE Docs image tag
tag: 8.1.3-1
tag: 8.2.0-1
## clearCache.job.image.pullPolicy Job by Clear Cache ONLYOFFICE Docs image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the Clear Cache container
Expand Down Expand Up @@ -1570,7 +1576,7 @@ grafanaDashboard:
## grafanaDashboard.job.image.repository Job by Grafana Dashboard ONLYOFFICE Docs image repository
repository: onlyoffice/docs-utils
## grafanaDashboard.job.image.tag Job by Grafana Dashboard ONLYOFFICE Docs image tag
tag: 8.1.3-1
tag: 8.2.0-1
## grafanaDashboard.job.image.pullPolicy Job by Grafana Dashboard ONLYOFFICE Docs image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the Grafana Dashboard container
Expand Down Expand Up @@ -1636,7 +1642,7 @@ tests:
## tests.image.repository test container image name
repository: onlyoffice/docs-utils
## tests.image.tag test container image tag
tag: 8.1.3-1
tag: 8.2.0-1
## tests.image.pullPolicy test container image pull policy
pullPolicy: IfNotPresent
## Configure a Security Context for the Test container
Expand Down

0 comments on commit cd7384a

Please sign in to comment.