Skip to content

Commit

Permalink
OPSEXP-2504 Change default strategy for filestore deployment (#1186)
Browse files Browse the repository at this point in the history
  • Loading branch information
gionn authored Aug 20, 2024
1 parent 172410c commit 0ce5814
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
6 changes: 3 additions & 3 deletions helm/alfresco-content-services/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies:
version: 3.5.4
- name: alfresco-transform-service
repository: https://alfresco.github.io/alfresco-helm-charts/
version: 2.0.0
version: 2.1.0-alpha.1
- name: alfresco-search-service
repository: https://alfresco.github.io/alfresco-helm-charts/
version: 3.3.2
Expand All @@ -47,5 +47,5 @@ dependencies:
- name: elasticsearch
repository: https://helm.elastic.co
version: 7.17.3
digest: sha256:ce13bd7254aac9bc4b8c26c26e14a152ac7b647196ce6a5bb883962d8e2714d9
generated: "2024-08-19T15:55:19.402757+02:00"
digest: sha256:1e7ea0fd725747302345346015955e6cb2f2cc2d2641e45e90d08beaf3b922b9
generated: "2024-08-20T17:11:35.288272+02:00"
2 changes: 1 addition & 1 deletion helm/alfresco-content-services/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ dependencies:
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: activemq.enabled
- name: alfresco-transform-service
version: 2.0.0
version: 2.1.0-alpha.1
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: alfresco-transform-service.enabled
- name: alfresco-search-service
Expand Down
5 changes: 3 additions & 2 deletions helm/alfresco-content-services/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-search(alfresco-search-service) | 3.3.2 |
| https://alfresco.github.io/alfresco-helm-charts/ | share(alfresco-share) | 1.0.0 |
| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-sync-service | 6.0.0 |
| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-transform-service | 2.0.0 |
| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-transform-service | 2.1.0-alpha.1 |
| https://helm.elastic.co | elasticsearch | 7.17.3 |
| oci://registry-1.docker.io/bitnamicharts | postgresql-sync(postgresql) | 12.8.5 |
| oci://registry-1.docker.io/bitnamicharts | postgresql | 12.8.5 |
Expand Down Expand Up @@ -167,7 +167,8 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-transform-service.filestore.persistence.data.mountPath | string | `"/tmp/Alfresco"` | |
| alfresco-transform-service.filestore.persistence.data.subPath | string | `"alfresco-content-services/filestore-data"` | |
| alfresco-transform-service.filestore.persistence.enabled | bool | `true` | Persist filestore data |
| alfresco-transform-service.filestore.replicaCount | int | `1` | |
| alfresco-transform-service.filestore.replicaCount | int | `1` | To have more than 1 replica persistence should support `ReadWriteMany` access mode |
| alfresco-transform-service.filestore.strategy.type | string | `"Recreate"` | Strategy must be set to Recreate when persistence supports only `ReadWriteOnce` access mode. If `ReadWriteMany` is supported, then it can be set to RollingUpdate. |
| alfresco-transform-service.imagemagick.enabled | bool | `true` | Declares the alfresco-imagemagick service used by the content repository to transform image files |
| alfresco-transform-service.imagemagick.image.repository | string | `"alfresco/alfresco-imagemagick"` | |
| alfresco-transform-service.imagemagick.image.tag | string | `"5.1.3"` | |
Expand Down
6 changes: 6 additions & 0 deletions helm/alfresco-content-services/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,7 @@ alfresco-transform-service:
# -- Declares the alfresco-shared-file-store used by the content repository
# and transform service
enabled: true
# -- To have more than 1 replica persistence should support `ReadWriteMany` access mode
replicaCount: 1
image:
repository: quay.io/alfresco/alfresco-shared-file-store
Expand All @@ -274,6 +275,11 @@ alfresco-transform-service:
data:
mountPath: "/tmp/Alfresco"
subPath: "alfresco-content-services/filestore-data"
strategy:
# -- Strategy must be set to Recreate when persistence supports only
# `ReadWriteOnce` access mode. If `ReadWriteMany` is supported, then it
# can be set to RollingUpdate.
type: Recreate
share:
# -- toggle deploying Alfresco Share UI
enabled: true
Expand Down

0 comments on commit 0ce5814

Please sign in to comment.