diff --git a/.github/workflows/helm-enterprise.yml b/.github/workflows/helm-enterprise.yml
index 641c0c081..b40faef57 100644
--- a/.github/workflows/helm-enterprise.yml
+++ b/.github/workflows/helm-enterprise.yml
@@ -46,7 +46,6 @@ jobs:
JQ_FILTER: >-
[inputs | .charts[] | {name: .name, values: .values[]}
| del(. | select(.values=="community_values.yaml"))
- | del(. | select(.values=="7.1.N_values.yaml"))
| del(. | select(.values=="7.2.N_values.yaml"))
| select(.name=="alfresco-content-services")]
run: |
diff --git a/docker-compose/7.1.N-compose.yaml b/docker-compose/7.1.N-compose.yaml
deleted file mode 100644
index a543ec19f..000000000
--- a/docker-compose/7.1.N-compose.yaml
+++ /dev/null
@@ -1,311 +0,0 @@
-# This Docker Compose file will spin up an ACS cluster on a local host.
-# It requires a minimum of 13GB Memory to distribute among containers.
-#
-# For performance tuning, assign the container memory and give a percentage of
-# it to the JVM. Use either the -Xms,-Xmx flags or the newly added flags in
-# java 10+: -XX:MaxRAMPercentage and -XX:MinRAMPercentage.
-# More details here:
-# https://www.oracle.com/technetwork/java/javase/10-relnote-issues-4108729.html
-#
-# Note: The Docker Compose file from github.com is a limited trial that goes
-# into read-only mode after 2 days. Get the latest compose.yaml file with
-# a 30-day trial license by accessing the Alfresco Content Services trial
-# download page at:
-# https://www.alfresco.com/platform/content-services-ecm/trial/download
-#
-# Java processes requires setting -XX:MaxRAM= due to cgroupv2 changes in recent Linux kernels
-# https://hub.alfresco.com/t5/alfresco-content-services-blog/acs-containers-and-cgroup-v2-in-acs-up-to-7-2/ba-p/318039
-#
-services:
- alfresco:
- image: quay.io/alfresco/alfresco-content-repository:7.1.1.10
- mem_limit: 1900m
- environment:
- JAVA_TOOL_OPTIONS: >-
- -Dencryption.keystore.type=JCEKS
- -Dencryption.cipherAlgorithm=DESede/CBC/PKCS5Padding
- -Dencryption.keyAlgorithm=DESede
- -Dencryption.keystore.location=/usr/local/tomcat/shared/classes/alfresco/extension/keystore/keystore
- -Dmetadata-keystore.password=mp6yc0UD9e
- -Dmetadata-keystore.aliases=metadata
- -Dmetadata-keystore.metadata.password=oKIWzVdEdA
- -Dmetadata-keystore.metadata.algorithm=DESede
- JAVA_OPTS: >-
- -Ddb.driver=org.postgresql.Driver
- -Ddb.username=alfresco
- -Ddb.password=alfresco
- -Ddb.url=jdbc:postgresql://postgres:5432/alfresco
- -Dsolr.host=solr6
- -Dsolr.port=8983
- -Dsolr.secureComms=none
- -Dsolr.base.url=/solr
- -Dindex.subsystem.name=solr6
- -Dshare.host=localhost
- -Dshare.port=8080
- -Dalfresco.host=localhost
- -Dalfresco.port=8080
- -Dcsrf.filter.enabled=false
- -Daos.baseUrlOverwrite=http://localhost:8080/alfresco/aos
- -Dmessaging.broker.url="failover:(nio://activemq:61616)?timeout=3000&jms.useCompression=true"
- -Ddeployment.method=DOCKER_COMPOSE
- -Dtransform.service.enabled=true
- -Dtransform.service.url=http://transform-router:8095
- -Dsfs.url=http://shared-file-store:8099/
- -DlocalTransform.core-aio.url=http://transform-core-aio:8090/
- -Ddsync.service.uris=http://localhost:9090/alfresco
- -XX:MinRAMPercentage=50
- -XX:MaxRAMPercentage=80
- -XX:MaxRAM=1900m
- healthcheck:
- test: ["CMD", "curl", "-f", "http://localhost:8080/alfresco/api/-default-/public/alfresco/versions/1/probes/-ready-"]
- interval: 30s
- timeout: 3s
- retries: 5
- start_period: 1m
- labels:
- - "traefik.enable=true"
- - "traefik.http.routers.alfresco.rule=PathPrefix(`/`)"
- - "traefik.http.services.alfresco.loadbalancer.server.port=8080"
- - "traefik.http.routers.solrapideny.rule=PathRegexp(`^/alfresco/(wc)?s(ervice)?/api/solr/.*$`)"
- - "traefik.http.middlewares.acsfakeauth.basicauth.users=fake:"
- - "traefik.http.routers.solrapideny.middlewares=acsfakeauth@docker"
- - "traefik.http.routers.alfrescomicrometer.rule=PathRegexp(`^/alfresco/(wc)?s(ervice)?/prometheus`)"
- - "traefik.http.middlewares.prometheusipfilter.ipallowlist.sourcerange=127.0.0.0/8"
- - "traefik.http.routers.alfrescomicrometer.middlewares=prometheusipfilter@docker"
- transform-router:
- mem_limit: 512m
- image: quay.io/alfresco/alfresco-transform-router:2.1.2
- environment:
- JAVA_OPTS: >-
- -XX:MinRAMPercentage=50
- -XX:MaxRAMPercentage=80
- -XX:MaxRAM=512m
- ACTIVEMQ_URL: nio://activemq:61616
- CORE_AIO_URL: http://transform-core-aio:8090
- FILE_STORE_URL: >-
- http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file
- ports:
- - "8095:8095"
- healthcheck:
- test: ["CMD", "curl", "-f", "http://localhost:8095/actuator/health"]
- interval: 10s
- timeout: 2s
- retries: 3
- start_period: 20s
- depends_on:
- activemq:
- condition: service_healthy
- shared-file-store:
- condition: service_healthy
- transform-core-aio:
- image: alfresco/alfresco-transform-core-aio:3.1.2
- mem_limit: 1536m
- environment:
- JAVA_OPTS: >-
- -XX:MinRAMPercentage=50
- -XX:MaxRAMPercentage=80
- -XX:MaxRAM=1536m
- ACTIVEMQ_URL: nio://activemq:61616
- FILE_STORE_URL: >-
- http://shared-file-store:8099/alfresco/api/-default-/private/sfs/versions/1/file
- ports:
- - "8090:8090"
- healthcheck:
- test: ["CMD", "curl", "-f", "http://localhost:8090/ready"]
- interval: 20s
- timeout: 2s
- retries: 3
- start_period: 10s
- depends_on:
- activemq:
- condition: service_healthy
- shared-file-store:
- condition: service_healthy
- shared-file-store:
- image: quay.io/alfresco/alfresco-shared-file-store:2.1.2
- mem_limit: 512m
- environment:
- JAVA_OPTS: >-
- -XX:MinRAMPercentage=50
- -XX:MaxRAMPercentage=80
- -XX:MaxRAM=512m
- scheduler.content.age.millis: 86400000
- scheduler.cleanup.interval: 86400000
- ports:
- - "8099:8099"
- healthcheck:
- test: ["CMD", "curl", "-f", "http://localhost:8099/ready"]
- interval: 20s
- timeout: 2s
- retries: 3
- start_period: 10s
- volumes:
- - shared-file-store-volume:/tmp/Alfresco/sfs
- share:
- image: quay.io/alfresco/alfresco-share:7.1.1.10
- mem_limit: 1g
- environment:
- CSRF_FILTER_ORIGIN: http://localhost:8080
- CSRF_FILTER_REFERER: http://localhost:8080/share/.*
- REPO_HOST: "alfresco"
- REPO_PORT: "8080"
- JAVA_OPTS: >-
- -XX:MinRAMPercentage=50
- -XX:MaxRAMPercentage=80
- -XX:MaxRAM=1g
- -Dalfresco.host=localhost
- -Dalfresco.port=8080
- -Dalfresco.context=alfresco
- -Dalfresco.protocol=http
- healthcheck:
- test: ["CMD", "curl", "-f", "http://localhost:8080/share"]
- interval: 20s
- timeout: 2s
- retries: 3
- start_period: 15s
- depends_on:
- alfresco:
- condition: service_healthy
- labels:
- - "traefik.enable=true"
- - "traefik.http.routers.share.rule=PathPrefix(`/share`)"
- - "traefik.http.services.share.loadbalancer.server.port=8080"
- - "traefik.http.routers.proxiedsolrapideny.rule=PathRegexp(`^/share/proxy/alfresco(-(noauth|feed|api))?/api/solr/`)"
- - "traefik.http.middlewares.sharefakeauth.basicauth.users=fake:"
- - "traefik.http.routers.proxiedsolrapideny.middlewares=sharefakeauth@docker"
- postgres:
- image: postgres:13.3
- mem_limit: 512m
- environment:
- - POSTGRES_PASSWORD=alfresco
- - POSTGRES_USER=alfresco
- - POSTGRES_DB=alfresco
- command: postgres -c max_connections=300 -c log_min_messages=LOG
- ports:
- - "5432:5432"
- healthcheck:
- test: ["CMD-SHELL", "pg_isready -d $$POSTGRES_DB -U $$POSTGRES_USER"]
- interval: 10s
- timeout: 3s
- retries: 3
- start_period: 5s
- solr6:
- image: quay.io/alfresco/search-services:2.0.2.2
- mem_limit: 2g
- environment:
- # Solr needs to know how to register itself with Alfresco
- SOLR_ALFRESCO_HOST: alfresco
- SOLR_ALFRESCO_PORT: 8080
- # Alfresco needs to know how to call solr
- SOLR_SOLR_HOST: solr6
- SOLR_SOLR_PORT: 8983
- # Create the default alfresco and archive cores
- SOLR_CREATE_ALFRESCO_DEFAULTS: alfresco,archive
- # HTTP by default
- ALFRESCO_SECURE_COMMS: none
- ports:
- - "8083:8983" # Browser port
- activemq:
- image: alfresco/alfresco-activemq:5.16-jre17-rockylinux8
- mem_limit: 1g
- ports:
- - "8161:8161" # Web Console
- - "5672:5672" # AMQP
- - "61616:61616" # OpenWire
- - "61613:61613" # STOMP
- healthcheck:
- test: ["CMD", "/opt/activemq/bin/activemq", "query", "--objname", "type=Broker,brokerName=*,service=Health", "|", "grep", "Good"]
- interval: 10s
- timeout: 5s
- retries: 5
- start_period: 5s
- digital-workspace:
- image: quay.io/alfresco/alfresco-digital-workspace:4.4.1
- mem_limit: 128m
- environment:
- APP_CONFIG_PROVIDER: "ECM"
- APP_CONFIG_AUTH_TYPE: "BASIC"
- BASE_PATH: ./
- APP_CONFIG_PLUGIN_PROCESS_SERVICE: "false"
- APP_CONFIG_PLUGIN_MICROSOFT_ONLINE: "false"
- APP_BASE_SHARE_URL: "http://localhost:8080/workspace/#/preview/s"
- labels:
- - "traefik.enable=true"
- - "traefik.http.routers.adw.rule=PathPrefix(`/workspace`)"
- - "traefik.http.middlewares.adwforceslash.redirectregex.regex=^(.*/workspace)$$"
- - "traefik.http.middlewares.adwforceslash.redirectregex.replacement=$${1}/"
- - "traefik.http.middlewares.adwroot.stripprefix.prefixes=/workspace"
- - "traefik.http.middlewares.adwchain.chain.middlewares=adwforceslash,adwroot"
- - "traefik.http.routers.adw.middlewares=adwchain@docker"
- healthcheck:
- test: ["CMD", "curl", "-f", "http://localhost:8080/"]
- interval: 10s
- timeout: 1s
- retries: 3
- start_period: 1s
- proxy:
- image: traefik:3.1
- mem_limit: 128m
- command:
- - "--api.insecure=true"
- - "--providers.docker=true"
- - "--entrypoints.web.address=:8080"
- - "--entryPoints.traefik.address=:8888"
- - "--accesslog=true"
- - "--providers.docker.exposedByDefault=false"
- - "--ping.entrypoint=web"
- - "--ping=true"
- ports:
- - "8080:8080"
- - "8888:8888"
- healthcheck:
- test: ["CMD", "traefik", "healthcheck", "--ping"]
- interval: 20s
- timeout: 10s
- retries: 3
- start_period: 10s
- security_opt:
- - label=disable # Required for accessing the Docker socket on Selinux enabled systems
- volumes:
- - /var/run/docker.sock:/var/run/docker.sock:ro
- sync-service:
- image: quay.io/alfresco/service-sync:3.11.3
- mem_limit: 1g
- environment:
- JAVA_OPTS: >-
- -Dsql.db.driver=org.postgresql.Driver
- -Dsql.db.url=jdbc:postgresql://postgres:5432/alfresco
- -Dsql.db.username=alfresco
- -Dsql.db.password=alfresco
- -Dmessaging.broker.host=activemq
- -Drepo.hostname=alfresco
- -Drepo.port=8080
- -Ddw.server.applicationConnectors[0].type=http
- -XX:MinRAMPercentage=50
- -XX:MaxRAMPercentage=80
- -XX:MaxRAM=1g
- ports:
- - "9090:9090"
- healthcheck:
- test: ["CMD", "curl", "-f", "http://localhost:9090/alfresco/healthcheck"]
- interval: 30s
- timeout: 2s
- retries: 3
- start_period: 20s
- depends_on:
- postgres:
- condition: service_healthy
- alfresco:
- condition: service_healthy
- labels:
- - "traefik.enable=true"
- - "traefik.http.routers.syncservice.rule=PathPrefix(`/syncservice`)"
- - "traefik.http.services.sync-service.loadbalancer.server.port=9090"
- - "traefik.http.middlewares.syncservice.replacepathregex.regex=^/syncservice/(.*)"
- - "traefik.http.middlewares.syncservice.replacepathregex.replacement=/alfresco/$$1"
- - "traefik.http.routers.syncservice.middlewares=syncservice@docker"
-volumes:
- shared-file-store-volume:
- driver_opts:
- type: tmpfs
- device: tmpfs
diff --git a/docker-compose/7.2.N-compose.yaml b/docker-compose/7.2.N-compose.yaml
index 34d2b8501..2564b2afd 100644
--- a/docker-compose/7.2.N-compose.yaml
+++ b/docker-compose/7.2.N-compose.yaml
@@ -191,7 +191,7 @@ services:
retries: 3
start_period: 5s
solr6:
- image: quay.io/alfresco/search-services:2.0.12
+ image: quay.io/alfresco/search-services:2.0.13
mem_limit: 2g
environment:
# Solr needs to know how to register itself with Alfresco
diff --git a/docker-compose/7.3.N-compose.yaml b/docker-compose/7.3.N-compose.yaml
index 2e9597e2a..99d4f18c7 100644
--- a/docker-compose/7.3.N-compose.yaml
+++ b/docker-compose/7.3.N-compose.yaml
@@ -183,7 +183,7 @@ services:
retries: 3
start_period: 5s
solr6:
- image: quay.io/alfresco/search-services:2.0.12
+ image: quay.io/alfresco/search-services:2.0.13
mem_limit: 2g
environment:
# Solr needs to know how to register itself with Alfresco
diff --git a/docker-compose/7.4.N-compose.yaml b/docker-compose/7.4.N-compose.yaml
index 59ec0cbd0..c49d6cf32 100644
--- a/docker-compose/7.4.N-compose.yaml
+++ b/docker-compose/7.4.N-compose.yaml
@@ -71,7 +71,7 @@ services:
- "traefik.http.routers.alfrescomicrometer.middlewares=prometheusipfilter@docker"
transform-router:
mem_limit: 512m
- image: quay.io/alfresco/alfresco-transform-router:4.1.4
+ image: quay.io/alfresco/alfresco-transform-router:4.1.5
environment:
JAVA_OPTS: >-
-XX:MinRAMPercentage=50
@@ -94,7 +94,7 @@ services:
shared-file-store:
condition: service_healthy
transform-core-aio:
- image: alfresco/alfresco-transform-core-aio:5.1.4
+ image: alfresco/alfresco-transform-core-aio:5.1.5
mem_limit: 1536m
environment:
JAVA_OPTS: >-
@@ -117,7 +117,7 @@ services:
shared-file-store:
condition: service_healthy
shared-file-store:
- image: quay.io/alfresco/alfresco-shared-file-store:4.1.4
+ image: quay.io/alfresco/alfresco-shared-file-store:4.1.5
mem_limit: 512m
environment:
JAVA_OPTS: >-
@@ -183,7 +183,7 @@ services:
retries: 3
start_period: 5s
solr6:
- image: quay.io/alfresco/search-services:2.0.12
+ image: quay.io/alfresco/search-services:2.0.13
mem_limit: 2g
environment:
# Solr needs to know how to register itself with Alfresco
diff --git a/docker-compose/community-compose.yaml b/docker-compose/community-compose.yaml
index 807dd84e3..af2bea365 100644
--- a/docker-compose/community-compose.yaml
+++ b/docker-compose/community-compose.yaml
@@ -9,7 +9,7 @@
#
services:
alfresco:
- image: docker.io/alfresco/alfresco-content-repository-community:23.3.0
+ image: docker.io/alfresco/alfresco-content-repository-community:23.4.0
mem_limit: 1900m
environment:
JAVA_TOOL_OPTIONS: >-
@@ -58,7 +58,7 @@ services:
- "traefik.http.middlewares.acsfakeauth.basicauth.users=fake:"
- "traefik.http.routers.solrapideny.middlewares=acsfakeauth@docker"
transform-core-aio:
- image: alfresco/alfresco-transform-core-aio:5.1.4
+ image: alfresco/alfresco-transform-core-aio:5.1.5
mem_limit: 1536m
environment:
JAVA_OPTS: >-
@@ -76,7 +76,7 @@ services:
activemq:
condition: service_healthy
share:
- image: docker.io/alfresco/alfresco-share:23.3.2
+ image: docker.io/alfresco/alfresco-share:23.4.0
mem_limit: 1g
environment:
CSRF_FILTER_ORIGIN: http://localhost:8080
@@ -123,7 +123,7 @@ services:
retries: 3
start_period: 5s
solr6:
- image: docker.io/alfresco/alfresco-search-services:2.0.12
+ image: docker.io/alfresco/alfresco-search-services:2.0.13
mem_limit: 2g
environment:
# Solr needs to know how to register itself with Alfresco
@@ -156,7 +156,7 @@ services:
retries: 5
start_period: 5s
content-app:
- image: alfresco/alfresco-content-app:5.1.1
+ image: alfresco/alfresco-content-app:5.2.0
mem_limit: 128m
environment:
APP_BASE_SHARE_URL: "http://localhost:8080/aca/#/preview/s"
@@ -175,7 +175,7 @@ services:
- "traefik.http.middlewares.acachain.chain.middlewares=acaforceslash,acaroot"
- "traefik.http.routers.aca.middlewares=acachain@docker"
control-center:
- image: quay.io/alfresco/alfresco-control-center:9.1.0
+ image: quay.io/alfresco/alfresco-control-center:9.2.0
mem_limit: 128m
environment:
APP_CONFIG_PROVIDER: "ECM"
diff --git a/docker-compose/compose.yaml b/docker-compose/compose.yaml
index 143c43c25..ccdf4026f 100644
--- a/docker-compose/compose.yaml
+++ b/docker-compose/compose.yaml
@@ -15,7 +15,7 @@
#
services:
alfresco:
- image: quay.io/alfresco/alfresco-content-repository:23.3.2
+ image: quay.io/alfresco/alfresco-content-repository:23.4.0
mem_limit: 1900m
environment:
JAVA_TOOL_OPTIONS: >-
@@ -69,7 +69,7 @@ services:
- "traefik.http.routers.alfrescomicrometer.middlewares=prometheusipfilter@docker"
transform-router:
mem_limit: 512m
- image: quay.io/alfresco/alfresco-transform-router:4.1.4
+ image: quay.io/alfresco/alfresco-transform-router:4.1.5
environment:
JAVA_OPTS: >-
-XX:MinRAMPercentage=50
@@ -92,7 +92,7 @@ services:
shared-file-store:
condition: service_healthy
transform-core-aio:
- image: alfresco/alfresco-transform-core-aio:5.1.4
+ image: alfresco/alfresco-transform-core-aio:5.1.5
mem_limit: 1536m
environment:
JAVA_OPTS: >-
@@ -115,7 +115,7 @@ services:
shared-file-store:
condition: service_healthy
shared-file-store:
- image: quay.io/alfresco/alfresco-shared-file-store:4.1.4
+ image: quay.io/alfresco/alfresco-shared-file-store:4.1.5
mem_limit: 512m
environment:
JAVA_OPTS: >-
@@ -134,7 +134,7 @@ services:
volumes:
- shared-file-store-volume:/tmp/Alfresco/sfs
share:
- image: quay.io/alfresco/alfresco-share:23.3.2
+ image: quay.io/alfresco/alfresco-share:23.4.0
mem_limit: 1g
environment:
CSRF_FILTER_ORIGIN: http://localhost:8080
@@ -220,7 +220,7 @@ services:
retries: 5
start_period: 30s
search:
- image: quay.io/alfresco/alfresco-elasticsearch-live-indexing:4.1.0
+ image: quay.io/alfresco/alfresco-elasticsearch-live-indexing:4.2.0
mem_limit: 1g
environment:
ALFRESCO_ACCEPTED_CONTENT_MEDIA_TYPES_CACHE_BASE_URL: >-
@@ -243,7 +243,7 @@ services:
shared-file-store:
condition: service_healthy
search-reindexing:
- image: quay.io/alfresco/alfresco-elasticsearch-reindexing:4.1.0
+ image: quay.io/alfresco/alfresco-elasticsearch-reindexing:4.2.0
mem_limit: 1g
restart: on-failure:5
environment:
@@ -276,7 +276,7 @@ services:
retries: 5
start_period: 5s
audit-storage:
- image: quay.io/alfresco/alfresco-audit-storage:1.0.0-A1
+ image: quay.io/alfresco/alfresco-audit-storage:1.0.0
mem_limit: 512m
environment:
SPRING_ACTIVEMQ_BROKERURL: failover:(nio://activemq:61616)?timeout=3000
@@ -296,7 +296,7 @@ services:
elasticsearch:
condition: service_healthy
digital-workspace:
- image: quay.io/alfresco/alfresco-digital-workspace:5.1.0
+ image: quay.io/alfresco/alfresco-digital-workspace:5.2.0
mem_limit: 128m
environment:
APP_CONFIG_PROVIDER: "ECM"
@@ -320,7 +320,7 @@ services:
- "traefik.http.middlewares.adwchain.chain.middlewares=adwforceslash,adwroot"
- "traefik.http.routers.adw.middlewares=adwchain@docker"
control-center:
- image: quay.io/alfresco/alfresco-control-center:9.1.0
+ image: quay.io/alfresco/alfresco-control-center:9.2.0
mem_limit: 128m
environment:
APP_CONFIG_PROVIDER: "ECM"
@@ -366,7 +366,7 @@ services:
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
sync-service:
- image: quay.io/alfresco/service-sync:4.0.1
+ image: quay.io/alfresco/service-sync:5.1.0
mem_limit: 1g
environment:
JAVA_OPTS: >-
diff --git a/docker-compose/pre-release-compose.yaml b/docker-compose/pre-release-compose.yaml
index 5b8e50d4d..69e055be7 100644
--- a/docker-compose/pre-release-compose.yaml
+++ b/docker-compose/pre-release-compose.yaml
@@ -15,7 +15,7 @@
#
services:
alfresco:
- image: quay.io/alfresco/alfresco-content-repository:23.4.0-A15
+ image: quay.io/alfresco/alfresco-content-repository:25.1.0-A.1
mem_limit: 1900m
environment:
JAVA_TOOL_OPTIONS: >-
@@ -69,7 +69,7 @@ services:
- "traefik.http.routers.alfrescomicrometer.middlewares=prometheusipfilter@docker"
transform-router:
mem_limit: 512m
- image: quay.io/alfresco/alfresco-transform-router:4.1.5-A3
+ image: quay.io/alfresco/alfresco-transform-router:4.1.5
environment:
JAVA_OPTS: >-
-XX:MinRAMPercentage=50
@@ -92,7 +92,7 @@ services:
shared-file-store:
condition: service_healthy
transform-core-aio:
- image: alfresco/alfresco-transform-core-aio:5.1.5-A3
+ image: alfresco/alfresco-transform-core-aio:5.1.5
mem_limit: 1536m
environment:
JAVA_OPTS: >-
@@ -115,7 +115,7 @@ services:
shared-file-store:
condition: service_healthy
shared-file-store:
- image: quay.io/alfresco/alfresco-shared-file-store:4.1.5-A3
+ image: quay.io/alfresco/alfresco-shared-file-store:4.1.5
mem_limit: 512m
environment:
JAVA_OPTS: >-
@@ -134,7 +134,7 @@ services:
volumes:
- shared-file-store-volume:/tmp/Alfresco/sfs
share:
- image: quay.io/alfresco/alfresco-share:23.4.0-A15
+ image: quay.io/alfresco/alfresco-share:25.1.0-A.1
mem_limit: 1g
environment:
CSRF_FILTER_ORIGIN: http://localhost:8080
@@ -214,13 +214,13 @@ services:
elasticsearch:
condition: service_healthy
healthcheck:
- test: [ "CMD", "curl", "-f", "-o", "/dev/null", "http://localhost:5601/status" ]
+ test: ["CMD", "curl", "-f", "-o", "/dev/null", "http://localhost:5601/status"]
interval: 10s
timeout: 2s
retries: 5
start_period: 30s
search:
- image: quay.io/alfresco/alfresco-elasticsearch-live-indexing:4.2.0-A5
+ image: quay.io/alfresco/alfresco-elasticsearch-live-indexing:4.3.0-A.1
mem_limit: 1g
environment:
ALFRESCO_ACCEPTED_CONTENT_MEDIA_TYPES_CACHE_BASE_URL: >-
@@ -243,7 +243,7 @@ services:
shared-file-store:
condition: service_healthy
search-reindexing:
- image: quay.io/alfresco/alfresco-elasticsearch-reindexing:4.2.0-A5
+ image: quay.io/alfresco/alfresco-elasticsearch-reindexing:4.3.0-A.1
mem_limit: 1g
restart: on-failure:5
environment:
@@ -276,7 +276,7 @@ services:
retries: 5
start_period: 5s
digital-workspace:
- image: quay.io/alfresco/alfresco-digital-workspace:5.1.0-11106981658
+ image: quay.io/alfresco/alfresco-digital-workspace:5.3.0-12081248559
mem_limit: 128m
environment:
APP_CONFIG_PROVIDER: "ECM"
@@ -300,7 +300,7 @@ services:
- "traefik.http.middlewares.adwchain.chain.middlewares=adwforceslash,adwroot"
- "traefik.http.routers.adw.middlewares=adwchain@docker"
audit-storage:
- image: quay.io/alfresco/alfresco-audit-storage:1.0.0-A1
+ image: quay.io/alfresco/alfresco-audit-storage:1.0.0
mem_limit: 512m
environment:
SPRING_ACTIVEMQ_BROKERURL: failover:(nio://activemq:61616)?timeout=3000
@@ -309,7 +309,7 @@ services:
AUDIT_ENTRYSTORAGE_OPENSEARCH_CONNECTOR_PASSWORD: admin
AUDIT_EVENTINGESTION_URI: activemq:topic:alfresco.repo.event2
healthcheck:
- test: [ "CMD", "curl", "-f", "http://localhost:8081/actuator/health/readiness" ]
+ test: ["CMD", "curl", "-f", "http://localhost:8081/actuator/health/readiness"]
interval: 60s
timeout: 2s
retries: 3
@@ -320,7 +320,7 @@ services:
elasticsearch:
condition: service_healthy
control-center:
- image: quay.io/alfresco/alfresco-control-center:9.1.0-11106981658
+ image: quay.io/alfresco/alfresco-control-center:9.3.0-12081248559
mem_limit: 128m
environment:
APP_CONFIG_PROVIDER: "ECM"
@@ -366,7 +366,7 @@ services:
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
sync-service:
- image: quay.io/alfresco/service-sync:5.1.0-M2
+ image: quay.io/alfresco/service-sync:5.1.0-A9
mem_limit: 1g
environment:
JAVA_OPTS: >-
diff --git a/docker-compose/solr6-overrides.yaml b/docker-compose/solr6-overrides.yaml
index 746d26f03..27e6076cd 100644
--- a/docker-compose/solr6-overrides.yaml
+++ b/docker-compose/solr6-overrides.yaml
@@ -30,7 +30,7 @@ services:
-XX:MinRAMPercentage=50
-XX:MaxRAMPercentage=80
solr6:
- image: quay.io/alfresco/search-services:2.0.12
+ image: quay.io/alfresco/search-services:2.0.13
mem_limit: 2g
environment:
# Solr needs to know how to register itself with Alfresco
diff --git a/docker-compose/updatecli-matrix-targets.yaml b/docker-compose/updatecli-matrix-targets.yaml
index c0a8dd4ef..1b1f6ed09 100644
--- a/docker-compose/updatecli-matrix-targets.yaml
+++ b/docker-compose/updatecli-matrix-targets.yaml
@@ -285,48 +285,6 @@ matrix:
compose_target: *compose72
compose_key: $.services.transform-core-aio.image
- 7.1.N:
- id: 71n
- acs:
- version:
- compose_target: &compose71 >-
- docker-compose/7.1.N-compose.yaml
- compose_key: $.services.alfresco.image
- pattern:
- image:
- activemq:
- version:
- pattern:
- image:
- share:
- version:
- compose_target: *compose71
- compose_key: $.services.share.image
- pattern:
- image:
- sync:
- version:
- compose_target: *compose71
- compose_key: $.services.sync-service.image
- pattern:
- adw:
- version:
- compose_target: *compose71
- compose_key: $.services.digital-workspace.image
- pattern:
- trouter:
- version:
- compose_target: *compose71
- compose_key: $.services.transform-router.image
- sfs:
- version:
- compose_target: *compose71
- compose_key: $.services.shared-file-store.image
- tengine-aio:
- version:
- compose_target: *compose71
- compose_key: $.services.transform-core-aio.image
-
community: &community
id: com
acs:
diff --git a/docs/index.md b/docs/index.md
index b8f2ed45b..5d926dfb0 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -106,6 +106,7 @@ file for a version with the latest charts or using the old charts.
| unsupported ACS version | Last chart version providing it |
|-------------------------|---------------------------------|
+| 7.1 | 8.5.2 |
| 7.0 | 8.0.1 |
| 6.2 | 5.3.0 |
| 6.1 | 5.1.1 |
diff --git a/helm/acs-sso-example/Chart.lock b/helm/acs-sso-example/Chart.lock
index 381a2e838..7cea69f13 100644
--- a/helm/acs-sso-example/Chart.lock
+++ b/helm/acs-sso-example/Chart.lock
@@ -7,15 +7,15 @@ dependencies:
version: 2.5.1
- name: alfresco-repository
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.8.0-alpha.0
+ version: 0.8.0
- name: activemq
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 3.6.0-alpha.0
+ version: 3.6.0
- name: alfresco-share
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 1.2.0-alpha.0
+ version: 1.2.0
- name: alfresco-adf-app
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.2.0-alpha.1
-digest: sha256:de409d25bcffbfc05715034e9e1c0612dd9de1b90259a67d7345f9085d8af17f
-generated: "2024-11-22T09:22:40.650230199Z"
+ version: 0.2.0
+digest: sha256:3bf57da26484518aae1cbda9d15f5f7ffc66d5719ca274af77721dc7d532b71b
+generated: "2024-11-29T14:09:38.670834875Z"
diff --git a/helm/acs-sso-example/Chart.yaml b/helm/acs-sso-example/Chart.yaml
index 15d672389..437f38b21 100644
--- a/helm/acs-sso-example/Chart.yaml
+++ b/helm/acs-sso-example/Chart.yaml
@@ -35,15 +35,15 @@ dependencies:
version: 2.5.1
- name: alfresco-repository
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.8.0-alpha.0
+ version: 0.8.0
- name: activemq
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 3.6.0-alpha.0
+ version: 3.6.0
- name: alfresco-share
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 1.2.0-alpha.0
+ version: 1.2.0
- name: alfresco-adf-app
alias: alfresco-content-app
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.2.0-alpha.1
+ version: 0.2.0
icon: https://avatars0.githubusercontent.com/u/391127?s=200&v=4
diff --git a/helm/acs-sso-example/README.md b/helm/acs-sso-example/README.md
index 5bf85d873..ce86ed3a7 100644
--- a/helm/acs-sso-example/README.md
+++ b/helm/acs-sso-example/README.md
@@ -37,10 +37,10 @@ deployment is destroyed or rolled back!
| Repository | Name | Version |
|------------|------|---------|
-| https://alfresco.github.io/alfresco-helm-charts/ | activemq | 3.6.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-content-app(alfresco-adf-app) | 0.2.0-alpha.1 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-repository | 0.8.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-share | 1.2.0-alpha.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | activemq | 3.6.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-content-app(alfresco-adf-app) | 0.2.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-repository | 0.8.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-share | 1.2.0 |
| https://codecentric.github.io/helm-charts | keycloakx | 2.5.1 |
| oci://registry-1.docker.io/bitnamicharts | repository-database(postgresql) | 13.4.0 |
@@ -56,7 +56,7 @@ deployment is destroyed or rolled back!
| keycloakx | object | check values.yaml | Configure the ACS Keycloak Identity provider as per https://github.com/codecentric/helm-charts/tree/keycloakx-2.3.0 |
| keycloakx.admin.password | string | random ascii string | Keycloak admin password. By default generated on first deployment, to get its value use:
kubectl get secrets keycloak -o jsonpath='{@.data.KEYCLOAK_ADMIN_PASSWORD}' | base64 -d
|
| keycloakx.admin.realm[0] | object | `{"clients":[{"clientId":"alfresco","enabled":true,"implicitFlowEnabled":true,"publicClient":true,"redirectUris":"{{- $redirectUris := list }} {{- range (index (include \"alfresco-common.known.urls\" $ | mustFromJson) \"known_urls\") }} {{- $redirectUris = append $redirectUris (printf \"%s/*\" .) }} {{- end }} {{- $redirectUris }}","standardFlowEnabled":true,"webOrigins":"{{ index (include \"alfresco-common.known.urls\" $ | mustFromJson) \"known_urls\" }}"}],"defaultLocale":"en","enabled":true,"id":"alfresco","internationalizationEnabled":true,"loginTheme":"alfresco","realm":"alfresco","sslRequired":"none","supportedLocales":["ca","de","en","es","fr","it","ja","lt","nl","no","pt-BR","ru","sv","zh-CN"],"users":[{"credentials":[{"type":"password","value":"secret"}],"enabled":true,"username":"admin"}]}` | Alfresco Realm definition |
+| keycloakx.admin.realm[0].users[0] | object | `{"credentials":[{"type":"password","value":"secret"}],"enabled":true,"username":"admin"}` | default Alfresco admin user |
| keycloakx.admin.realm[0].users[0].credentials[0].value | string | `"secret"` | default Alfresco admin password |
-| keycloakx.admin.realm[0].users[0].username | string | `"admin"` | default Alfresco admin user |
| keycloakx.admin.username | string | `"admin"` | Keycloak admin username |
| repository-database | object | check values.yaml | Configure the ACS repository Postgres database as per https://github.com/bitnami/charts/tree/002c752f871c8fa068a770dc80fec4cf798798ab/bitnami/postgresql |
diff --git a/helm/acs-sso-example/values.yaml b/helm/acs-sso-example/values.yaml
index b33e2054c..fc6901b2e 100644
--- a/helm/acs-sso-example/values.yaml
+++ b/helm/acs-sso-example/values.yaml
@@ -71,8 +71,8 @@ keycloakx:
webOrigins: >-
{{ index (include "alfresco-common.known.urls" $ | mustFromJson) "known_urls" }}
users:
- - # -- default Alfresco admin user
- username: admin
+ # -- default Alfresco admin user
+ - username: admin
enabled: true
credentials:
- type: password
@@ -185,7 +185,7 @@ alfresco-repository:
replicaCount: 1
image:
repository: alfresco/alfresco-content-repository-community
- tag: 23.3.0
+ tag: 23.4.0
configuration:
repository:
existingConfigMap: repository-properties
@@ -214,7 +214,7 @@ alfresco-share:
nameOverride: alfresco-share
image:
repository: alfresco/alfresco-share
- tag: 23.3.2
+ tag: 23.4.0
repository:
existingConfigMap:
name: share-repository
@@ -247,7 +247,7 @@ alfresco-content-app:
tls: []
image:
repository: alfresco/alfresco-content-app
- tag: 5.1.1
+ tag: 5.2.0
pullPolicy: IfNotPresent
env:
APP_CONFIG_PROVIDER: ECM
diff --git a/helm/alfresco-content-services/7.1.N_values.yaml b/helm/alfresco-content-services/7.1.N_values.yaml
deleted file mode 100644
index e38c87a8e..000000000
--- a/helm/alfresco-content-services/7.1.N_values.yaml
+++ /dev/null
@@ -1,109 +0,0 @@
-# This values file can be used to install ACS 7.1.x using the latest version of
-# the chart
-alfresco-repository:
- image:
- tag: 7.1.1.10
- configuration:
- search:
- flavor: solr6
-activemq:
- image:
- repository: quay.io/alfresco/alfresco-activemq
- tag: 5.16.7-jre17-rockylinux8
-alfresco-ai-transformer:
- image:
- tag: 1.5.1
-alfresco-transform-service:
- transformrouter:
- image:
- tag: 2.1.2
- pdfrenderer:
- image:
- tag: 3.1.2
- imagemagick:
- image:
- tag: 3.1.2
- libreoffice:
- image:
- tag: 3.1.2
- tika:
- image:
- tag: 3.1.2
- transformmisc:
- image:
- tag: 3.1.2
- filestore:
- image:
- tag: 2.1.2
-share:
- image:
- tag: 7.1.1.10
-alfresco-search:
- enabled: true
- repository:
- securecomms: none
- searchServicesImage:
- tag: 2.0.12
- insightEngineImage:
- tag: 2.0.12
-alfresco-search-enterprise:
- enabled: false
- liveIndexing:
- mediation:
- image:
- tag: 3.1.1.1
- content:
- image:
- tag: 3.1.1.1
- metadata:
- image:
- tag: 3.1.1.1
- path:
- image:
- tag: 3.1.1.1
- reindexing:
- image:
- tag: 3.1.1.1
-elasticsearch:
- enabled: false
-postgresql:
- image:
- tag: 13.3.0
-postgresql-sync:
- image:
- tag: 13.3.0
-alfresco-digital-workspace:
- image:
- tag: 4.4.1
-alfresco-sync-service:
- image:
- tag: 3.11.3
-alfresco-connector-msteams:
- image:
- tag: 1.1.0
-alfresco-connector-ms365:
- image:
- tag: 1.1.1
-alfresco-control-center:
- enabled: false
-elasticsearch-audit:
- enabled: false
-kibana-audit:
- enabled: false
-alfresco-audit-storage:
- enabled: false
-global:
- search:
- securecomms: none
-dtas:
- config:
- assertions:
- acs:
- version: 7.1.1
- modules:
- - id: org.alfresco.integrations.google.docs
- version: 3.2.1.3
- installed: true
- - id: alfresco-aos-module
- version: 1.4.0.1
- installed: true
diff --git a/helm/alfresco-content-services/7.2.N_values.yaml b/helm/alfresco-content-services/7.2.N_values.yaml
index 922c4591f..dad0135c3 100644
--- a/helm/alfresco-content-services/7.2.N_values.yaml
+++ b/helm/alfresco-content-services/7.2.N_values.yaml
@@ -41,9 +41,9 @@ share:
alfresco-search:
enabled: true
searchServicesImage:
- tag: 2.0.12
+ tag: 2.0.13
insightEngineImage:
- tag: 2.0.12
+ tag: 2.0.13
alfresco-search-enterprise:
enabled: false
liveIndexing:
diff --git a/helm/alfresco-content-services/7.3.N_values.yaml b/helm/alfresco-content-services/7.3.N_values.yaml
index 4987dc470..508fe0d19 100644
--- a/helm/alfresco-content-services/7.3.N_values.yaml
+++ b/helm/alfresco-content-services/7.3.N_values.yaml
@@ -41,9 +41,9 @@ alfresco-transform-service:
alfresco-search:
enabled: true
searchServicesImage:
- tag: 2.0.12
+ tag: 2.0.13
insightEngineImage:
- tag: 2.0.12
+ tag: 2.0.13
alfresco-search-enterprise:
enabled: false
liveIndexing:
diff --git a/helm/alfresco-content-services/7.4.N_values.yaml b/helm/alfresco-content-services/7.4.N_values.yaml
index f1eded586..df6d9e95d 100644
--- a/helm/alfresco-content-services/7.4.N_values.yaml
+++ b/helm/alfresco-content-services/7.4.N_values.yaml
@@ -13,37 +13,37 @@ activemq:
alfresco-transform-service:
transformrouter:
image:
- tag: 4.1.4
+ tag: 4.1.5
pdfrenderer:
image:
- tag: 5.1.4
+ tag: 5.1.5
imagemagick:
image:
- tag: 5.1.4
+ tag: 5.1.5
libreoffice:
image:
- tag: 5.1.4
+ tag: 5.1.5
tika:
image:
- tag: 5.1.4
+ tag: 5.1.5
transformmisc:
image:
- tag: 5.1.4
+ tag: 5.1.5
filestore:
image:
- tag: 4.1.4
+ tag: 4.1.5
alfresco-ai-transformer:
image:
- tag: 3.1.6
+ tag: 3.1.7
share:
image:
tag: 7.4.2.3
alfresco-search:
enabled: true
searchServicesImage:
- tag: 2.0.12
+ tag: 2.0.13
insightEngineImage:
- tag: 2.0.12
+ tag: 2.0.13
alfresco-search-enterprise:
enabled: false
liveIndexing:
@@ -81,10 +81,10 @@ alfresco-sync-service:
tag: 3.11.3
alfresco-connector-ms365:
image:
- tag: 2.0.3
+ tag: 2.0.4
alfresco-connector-msteams:
image:
- tag: 2.0.3
+ tag: 2.0.4
elasticsearch-audit:
enabled: false
kibana-audit:
diff --git a/helm/alfresco-content-services/Chart.lock b/helm/alfresco-content-services/Chart.lock
index 0171becce..04557951d 100644
--- a/helm/alfresco-content-services/Chart.lock
+++ b/helm/alfresco-content-services/Chart.lock
@@ -10,40 +10,40 @@ dependencies:
version: 12.8.5
- name: alfresco-adf-app
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.2.0-alpha.1
+ version: 0.2.0
- name: alfresco-adf-app
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.2.0-alpha.1
+ version: 0.2.0
- name: alfresco-repository
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.8.0-alpha.0
+ version: 0.8.0
- name: activemq
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 3.6.0-alpha.0
+ version: 3.6.0
- name: alfresco-transform-service
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 2.1.1
+ version: 2.1.2
- name: alfresco-search-service
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 4.0.0-alpha.1
+ version: 4.0.0
- name: alfresco-sync-service
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 6.1.0-alpha.0
+ version: 6.1.0
- name: alfresco-search-enterprise
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 4.2.0-alpha.3
+ version: 4.2.0
- name: alfresco-connector-msteams
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 1.2.0-alpha.0
+ version: 1.2.0
- name: alfresco-share
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 1.2.0-alpha.0
+ version: 1.2.0
- name: alfresco-connector-ms365
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 2.2.0-alpha.0
+ version: 2.2.0
- name: alfresco-ai-transformer
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 3.0.0-alpha.0
+ version: 3.0.0
- name: elasticsearch
repository: https://helm.elastic.co
version: 7.17.3
@@ -55,6 +55,6 @@ dependencies:
version: 7.17.3
- name: alfresco-audit-storage
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.1.0-alpha.0
-digest: sha256:03792150545ee87306a545317541cc4ec832ec53009bb89f70012719b8498e78
-generated: "2024-11-22T09:23:20.646695267Z"
+ version: 0.1.0
+digest: sha256:50a1e25c116694192ff6f36c308044aa95e86ee3c32fe1d5086a5deb16c6f1fa
+generated: "2024-11-29T14:10:39.976018126Z"
diff --git a/helm/alfresco-content-services/Chart.yaml b/helm/alfresco-content-services/Chart.yaml
index ca85446dc..177a40aa9 100644
--- a/helm/alfresco-content-services/Chart.yaml
+++ b/helm/alfresco-content-services/Chart.yaml
@@ -4,8 +4,8 @@
# https://www.alfresco.com/platform/content-services-ecm/trial/download
apiVersion: v2
name: alfresco-content-services
-version: 8.6.0-alpha.0
-appVersion: 23.3.2
+version: 8.6.0
+appVersion: 23.4.0
description: A Helm chart for deploying Alfresco Content Services
keywords:
- content
@@ -31,54 +31,54 @@ dependencies:
- name: alfresco-adf-app
alias: alfresco-control-center
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.2.0-alpha.1
+ version: 0.2.0
condition: >-
alfresco-control-center.enabled
- name: alfresco-adf-app
alias: alfresco-digital-workspace
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 0.2.0-alpha.1
+ version: 0.2.0
condition: >-
alfresco-digital-workspace.enabled
- name: alfresco-repository
- version: 0.8.0-alpha.0
+ version: 0.8.0
repository: https://alfresco.github.io/alfresco-helm-charts/
- name: activemq
- version: 3.6.0-alpha.0
+ version: 3.6.0
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: activemq.enabled
- name: alfresco-transform-service
- version: 2.1.1
+ version: 2.1.2
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: alfresco-transform-service.enabled
- name: alfresco-search-service
alias: alfresco-search
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 4.0.0-alpha.1
+ version: 4.0.0
condition: alfresco-search.enabled
- name: alfresco-sync-service
repository: https://alfresco.github.io/alfresco-helm-charts/
- version: 6.1.0-alpha.0
+ version: 6.1.0
condition: alfresco-sync-service.enabled
- name: alfresco-search-enterprise
- version: 4.2.0-alpha.3
+ version: 4.2.0
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: alfresco-search-enterprise.enabled
- name: alfresco-connector-msteams
- version: 1.2.0-alpha.0
+ version: 1.2.0
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: alfresco-connector-msteams.enabled
- name: alfresco-share
alias: share
- version: 1.2.0-alpha.0
+ version: 1.2.0
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: share.enabled
- name: alfresco-connector-ms365
- version: 2.2.0-alpha.0
+ version: 2.2.0
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: alfresco-connector-ms365.enabled
- name: alfresco-ai-transformer
- version: 3.0.0-alpha.0
+ version: 3.0.0
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: alfresco-ai-transformer.enabled
- name: elasticsearch
@@ -96,7 +96,7 @@ dependencies:
version: 7.17.3
condition: kibana-audit.enabled
- name: alfresco-audit-storage
- version: 0.1.0-alpha.0
+ version: 0.1.0
repository: https://alfresco.github.io/alfresco-helm-charts/
condition: alfresco-audit-storage.enabled
icon: https://avatars0.githubusercontent.com/u/391127?s=200&v=4
diff --git a/helm/alfresco-content-services/README.md b/helm/alfresco-content-services/README.md
index d7f69ef92..0259b655b 100644
--- a/helm/alfresco-content-services/README.md
+++ b/helm/alfresco-content-services/README.md
@@ -6,7 +6,7 @@ grand_parent: Helm
# alfresco-content-services
-![Version: 8.6.0-alpha.0](https://img.shields.io/badge/Version-8.6.0--alpha.0-informational?style=flat-square) ![AppVersion: 23.3.2](https://img.shields.io/badge/AppVersion-23.3.2-informational?style=flat-square)
+![Version: 8.6.0](https://img.shields.io/badge/Version-8.6.0-informational?style=flat-square) ![AppVersion: 23.4.0](https://img.shields.io/badge/AppVersion-23.4.0-informational?style=flat-square)
A Helm chart for deploying Alfresco Content Services
@@ -22,20 +22,20 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| Repository | Name | Version |
|------------|------|---------|
-| https://alfresco.github.io/alfresco-helm-charts/ | activemq | 3.6.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-control-center(alfresco-adf-app) | 0.2.0-alpha.1 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-digital-workspace(alfresco-adf-app) | 0.2.0-alpha.1 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-ai-transformer | 3.0.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-audit-storage | 0.1.0-alpha.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | activemq | 3.6.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-control-center(alfresco-adf-app) | 0.2.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-digital-workspace(alfresco-adf-app) | 0.2.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-ai-transformer | 3.0.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-audit-storage | 0.1.0 |
| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-common | 3.1.4 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-connector-ms365 | 2.2.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-connector-msteams | 1.2.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-repository | 0.8.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-search-enterprise | 4.2.0-alpha.3 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-search(alfresco-search-service) | 4.0.0-alpha.1 |
-| https://alfresco.github.io/alfresco-helm-charts/ | share(alfresco-share) | 1.2.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-sync-service | 6.1.0-alpha.0 |
-| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-transform-service | 2.1.1 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-connector-ms365 | 2.2.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-connector-msteams | 1.2.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-repository | 0.8.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-search-enterprise | 4.2.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-search(alfresco-search-service) | 4.0.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | share(alfresco-share) | 1.2.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-sync-service | 6.1.0 |
+| https://alfresco.github.io/alfresco-helm-charts/ | alfresco-transform-service | 2.1.2 |
| https://helm.elastic.co | elasticsearch | 7.17.3 |
| https://helm.elastic.co | elasticsearch-audit(elasticsearch) | 7.17.3 |
| https://helm.elastic.co | kibana-audit(kibana) | 7.17.3 |
@@ -56,14 +56,14 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-ai-transformer.enabled | bool | `false` | toggle deploying Alfresco ai transformer for more details about configuration check https://github.com/Alfresco/alfresco-helm-charts/tree/main/charts/alfresco-ai-transformer |
| alfresco-ai-transformer.fullnameOverride | string | `"alfresco-intelligence-service"` | Enforce static resource naming in AIS so the ATS trouter can be given the URL of the service |
| alfresco-ai-transformer.image.repository | string | `"quay.io/alfresco/alfresco-ai-docker-engine"` | |
-| alfresco-ai-transformer.image.tag | string | `"3.1.6"` | |
+| alfresco-ai-transformer.image.tag | string | `"3.1.7"` | |
| alfresco-ai-transformer.messageBroker.existingConfigMap.name | string | `"alfresco-infrastructure"` | Name of the configmap which holds the message broker URL |
| alfresco-ai-transformer.messageBroker.existingSecret.name | string | `"acs-alfresco-cs-brokersecret"` | Name of the configmap which holds the message broker credentials |
| alfresco-ai-transformer.sfs.existingConfigMap.keys.url | string | `"SFS_URL"` | Name of the key within the configmap which holds the sfs url |
| alfresco-ai-transformer.sfs.existingConfigMap.name | string | `"alfresco-infrastructure"` | Name of the configmap which holds the ATS shared filestore URL |
| alfresco-audit-storage.enabled | bool | `true` | |
| alfresco-audit-storage.image.repository | string | `"quay.io/alfresco/alfresco-audit-storage"` | |
-| alfresco-audit-storage.image.tag | string | `"1.0.0-A1"` | |
+| alfresco-audit-storage.image.tag | string | `"1.0.0"` | |
| alfresco-audit-storage.index.existingConfigMap.keys.url | string | `"AUDIT_ELASTICSEARCH_URL"` | |
| alfresco-audit-storage.index.existingConfigMap.name | string | `"alfresco-infrastructure"` | |
| alfresco-audit-storage.index.existingSecret.keys.password | string | `"AUDIT_ELASTICSEARCH_PASSWORD"` | |
@@ -73,20 +73,20 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-audit-storage.messageBroker.existingSecret.name | string | `"acs-alfresco-cs-brokersecret"` | Name of the configmap which holds the message broker credentials |
| alfresco-connector-ms365.enabled | bool | `false` | Enable/Disable Alfresco Content Connector for Microsoft 365 |
| alfresco-connector-ms365.image.repository | string | `"quay.io/alfresco/alfresco-ooi-service"` | |
-| alfresco-connector-ms365.image.tag | string | `"2.0.3"` | |
+| alfresco-connector-ms365.image.tag | string | `"2.0.4"` | |
| alfresco-connector-ms365.repository.existingConfigMap.keys.host | string | `"repo_svc_name"` | Name of the key in the configmap which points to the repository service hostname |
| alfresco-connector-ms365.repository.existingConfigMap.keys.port | string | `"repo_svc_port"` | Name of the key in the configmap which points to the repository service port |
| alfresco-connector-ms365.repository.existingConfigMap.name | string | `"alfresco-infrastructure"` | Name of the configmap which hold the repository connection details |
| alfresco-connector-msteams.enabled | bool | `false` | Enable/Disable Alfresco Content Connector for Microsoft Teams |
| alfresco-connector-msteams.image.repository | string | `"quay.io/alfresco/alfresco-ms-teams-service"` | |
-| alfresco-connector-msteams.image.tag | string | `"2.0.3"` | |
+| alfresco-connector-msteams.image.tag | string | `"2.0.4"` | |
| alfresco-control-center.enabled | bool | `true` | |
| alfresco-control-center.env.APP_CONFIG_AUTH_TYPE | string | `"BASIC"` | |
| alfresco-control-center.env.APP_CONFIG_PROVIDER | string | `"ECM"` | |
| alfresco-control-center.env.BASE_PATH | string | `"/control-center"` | |
| alfresco-control-center.image.pullPolicy | string | `"IfNotPresent"` | |
| alfresco-control-center.image.repository | string | `"quay.io/alfresco/alfresco-control-center"` | |
-| alfresco-control-center.image.tag | string | `"9.1.0"` | |
+| alfresco-control-center.image.tag | string | `"9.2.0"` | |
| alfresco-control-center.ingress.annotations."nginx.ingress.kubernetes.io/proxy-body-size" | string | `"5g"` | |
| alfresco-control-center.ingress.hosts[0].paths[0].path | string | `"/control-center"` | |
| alfresco-control-center.ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | |
@@ -98,7 +98,7 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-digital-workspace.env.BASE_PATH | string | `"/workspace"` | |
| alfresco-digital-workspace.image.pullPolicy | string | `"IfNotPresent"` | |
| alfresco-digital-workspace.image.repository | string | `"quay.io/alfresco/alfresco-digital-workspace"` | |
-| alfresco-digital-workspace.image.tag | string | `"5.1.0"` | |
+| alfresco-digital-workspace.image.tag | string | `"5.2.0"` | |
| alfresco-digital-workspace.ingress.annotations."nginx.ingress.kubernetes.io/proxy-body-size" | string | `"5g"` | |
| alfresco-digital-workspace.ingress.hosts[0].paths[0].path | string | `"/workspace"` | |
| alfresco-digital-workspace.ingress.hosts[0].paths[0].pathType | string | `"Prefix"` | |
@@ -122,24 +122,24 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-repository.configuration.search.existingSecret.name | string | `"alfresco-search-secret"` | |
| alfresco-repository.configuration.search.flavor | string | `"elasticsearch"` | |
| alfresco-repository.image.repository | string | `"quay.io/alfresco/alfresco-content-repository"` | |
-| alfresco-repository.image.tag | string | `"23.3.2"` | |
+| alfresco-repository.image.tag | string | `"23.4.0"` | |
| alfresco-repository.nameOverride | string | `"alfresco-repository"` | |
| alfresco-repository.persistence.accessModes | list | `["ReadWriteMany"]` | Specify a storageClass for dynamic provisioning |
| alfresco-repository.persistence.baseSize | string | `"20Gi"` | |
| alfresco-repository.persistence.enabled | bool | `true` | Persist repository data |
| alfresco-search-enterprise.ats.existingConfigMap.name | string | `"alfresco-infrastructure"` | |
| alfresco-search-enterprise.enabled | bool | `true` | |
-| alfresco-search-enterprise.liveIndexing.content.image.tag | string | `"4.1.0"` | |
-| alfresco-search-enterprise.liveIndexing.mediation.image.tag | string | `"4.1.0"` | |
-| alfresco-search-enterprise.liveIndexing.metadata.image.tag | string | `"4.1.0"` | |
-| alfresco-search-enterprise.liveIndexing.path.image.tag | string | `"4.1.0"` | |
+| alfresco-search-enterprise.liveIndexing.content.image.tag | string | `"4.2.0"` | |
+| alfresco-search-enterprise.liveIndexing.mediation.image.tag | string | `"4.2.0"` | |
+| alfresco-search-enterprise.liveIndexing.metadata.image.tag | string | `"4.2.0"` | |
+| alfresco-search-enterprise.liveIndexing.path.image.tag | string | `"4.2.0"` | |
| alfresco-search-enterprise.messageBroker.existingConfigMap.name | string | `"alfresco-infrastructure"` | |
| alfresco-search-enterprise.messageBroker.existingSecret.name | string | `"acs-alfresco-cs-brokersecret"` | |
| alfresco-search-enterprise.nameOverride | string | `"alfresco-search-enterprise"` | |
| alfresco-search-enterprise.reindexing.db.existingConfigMap.name | string | `"alfresco-infrastructure"` | |
| alfresco-search-enterprise.reindexing.db.existingSecret.name | string | `"alfresco-cs-database"` | |
| alfresco-search-enterprise.reindexing.enabled | bool | `true` | |
-| alfresco-search-enterprise.reindexing.image.tag | string | `"4.1.0"` | |
+| alfresco-search-enterprise.reindexing.image.tag | string | `"4.2.0"` | |
| alfresco-search-enterprise.reindexing.repository.existingConfigMap.name | string | `"alfresco-infrastructure"` | |
| alfresco-search-enterprise.search.existingConfigMap.name | string | `"alfresco-infrastructure"` | |
| alfresco-search-enterprise.search.existingSecret.name | string | `"alfresco-search-secret"` | |
@@ -151,7 +151,7 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-search.ingress.enabled | bool | `false` | Alfresco Search services endpoint ('/solr') |
| alfresco-search.ingress.tls | list | `[]` | |
| alfresco-search.insightEngineImage.repository | string | `"quay.io/alfresco/insight-engine"` | |
-| alfresco-search.insightEngineImage.tag | string | `"2.0.12"` | |
+| alfresco-search.insightEngineImage.tag | string | `"2.0.13"` | |
| alfresco-search.nameOverride | string | `"alfresco-search"` | |
| alfresco-search.repository.existingConfigMap.keys.host | string | `"repo_svc_name"` | |
| alfresco-search.repository.existingConfigMap.keys.port | string | `"repo_svc_port"` | |
@@ -160,12 +160,12 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-search.repository.existingSecret.keys.sharedSecret | string | `"SOLR_SECRET"` | |
| alfresco-search.repository.existingSecret.name | string | `"alfresco-search-secret"` | |
| alfresco-search.searchServicesImage.repository | string | `"quay.io/alfresco/search-services"` | |
-| alfresco-search.searchServicesImage.tag | string | `"2.0.12"` | |
+| alfresco-search.searchServicesImage.tag | string | `"2.0.13"` | |
| alfresco-sync-service.database.existingConfigMap.keys.url | string | `"SYNC_DATABASE_URL"` | |
| alfresco-sync-service.database.existingConfigMap.name | string | `"alfresco-infrastructure"` | |
| alfresco-sync-service.database.existingSecret.name | string | `"alfresco-cs-sync"` | |
| alfresco-sync-service.enabled | bool | `true` | Toggle deployment of Alfresco Sync Service (Desktop-Sync) Check [Alfresco Sync Service Documentation](https://github.com/Alfresco/alfresco-helm-charts/tree/main/charts/alfresco-sync-service) |
-| alfresco-sync-service.image.tag | string | `"4.0.1"` | |
+| alfresco-sync-service.image.tag | string | `"5.1.0"` | |
| alfresco-sync-service.messageBroker.existingConfigMap.name | string | `"alfresco-infrastructure"` | |
| alfresco-sync-service.messageBroker.existingSecret.name | string | `"acs-alfresco-cs-brokersecret"` | |
| alfresco-sync-service.replicaCount | int | `1` | |
@@ -175,7 +175,7 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-transform-service.enabled | bool | `true` | |
| alfresco-transform-service.filestore.enabled | bool | `true` | Declares the alfresco-shared-file-store used by the content repository and transform service |
| alfresco-transform-service.filestore.image.repository | string | `"quay.io/alfresco/alfresco-shared-file-store"` | |
-| alfresco-transform-service.filestore.image.tag | string | `"4.1.4"` | |
+| alfresco-transform-service.filestore.image.tag | string | `"4.1.5"` | |
| 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 |
@@ -183,25 +183,25 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| 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.4"` | |
+| alfresco-transform-service.imagemagick.image.tag | string | `"5.1.5"` | |
| alfresco-transform-service.libreoffice.enabled | bool | `true` | Declares the alfresco-libreoffice service used by the content repository to transform office files |
| alfresco-transform-service.libreoffice.image.repository | string | `"alfresco/alfresco-libreoffice"` | |
-| alfresco-transform-service.libreoffice.image.tag | string | `"5.1.4"` | |
+| alfresco-transform-service.libreoffice.image.tag | string | `"5.1.5"` | |
| alfresco-transform-service.messageBroker.existingConfigMap.name | string | `"alfresco-infrastructure"` | Name of the configmap which holds the ATS shared filestore URL |
| alfresco-transform-service.messageBroker.existingSecret.name | string | `"acs-alfresco-cs-brokersecret"` | |
| alfresco-transform-service.nameOverride | string | `"alfresco-transform-service"` | |
| alfresco-transform-service.pdfrenderer.enabled | bool | `true` | Declares the alfresco-pdf-renderer service used by the content repository to transform pdf files |
| alfresco-transform-service.pdfrenderer.image.repository | string | `"alfresco/alfresco-pdf-renderer"` | |
-| alfresco-transform-service.pdfrenderer.image.tag | string | `"5.1.4"` | |
+| alfresco-transform-service.pdfrenderer.image.tag | string | `"5.1.5"` | |
| alfresco-transform-service.tika.enabled | bool | `true` | Declares the alfresco-tika service used by the content repository to transform office files |
| alfresco-transform-service.tika.image.repository | string | `"alfresco/alfresco-tika"` | |
-| alfresco-transform-service.tika.image.tag | string | `"5.1.4"` | |
+| alfresco-transform-service.tika.image.tag | string | `"5.1.5"` | |
| alfresco-transform-service.transformmisc.enabled | bool | `true` | Declares the alfresco-tika service used by the content repository to transform office files |
| alfresco-transform-service.transformmisc.image.repository | string | `"alfresco/alfresco-transform-misc"` | |
-| alfresco-transform-service.transformmisc.image.tag | string | `"5.1.4"` | |
+| alfresco-transform-service.transformmisc.image.tag | string | `"5.1.5"` | |
| alfresco-transform-service.transformrouter.enabled | bool | `true` | Declares the alfresco-transform-router service used by the content repository to route transformation requests |
| alfresco-transform-service.transformrouter.image.repository | string | `"quay.io/alfresco/alfresco-transform-router"` | |
-| alfresco-transform-service.transformrouter.image.tag | string | `"4.1.4"` | |
+| alfresco-transform-service.transformrouter.image.tag | string | `"4.1.5"` | |
| alfresco-transform-service.transformrouter.livenessProbe.path | string | `"/transform/config"` | Overrride liveness probe endpoint to work around https://alfresco.atlassian.net/browse/ACS-7269 |
| alfresco-transform-service.transformrouter.replicaCount | int | `2` | |
| config.repository.additionalGlobalProperties | object | `{}` | |
@@ -231,8 +231,8 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| dtas.config.assertions.acs.modules[0].version | string | `"4.1.0"` | |
| dtas.config.assertions.acs.modules[1].id | string | `"alfresco-aos-module"` | |
| dtas.config.assertions.acs.modules[1].installed | bool | `true` | |
-| dtas.config.assertions.acs.modules[1].version | string | `"3.1.0"` | |
-| dtas.config.assertions.acs.version | string | `"23.3.1"` | |
+| dtas.config.assertions.acs.modules[1].version | string | `"3.2.0"` | |
+| dtas.config.assertions.acs.version | string | `"23.4.0"` | |
| dtas.config.assertions.adw.base_path | string | `"/workspace"` | |
| dtas.config.config.host | string | `"http://ingress-nginx-controller.ingress-nginx.svc.cluster.local"` | |
| dtas.config.config.password | string | `"admin"` | |
@@ -342,7 +342,7 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| prometheus.url | string | `nil` | URL of the prometheus server (must be reachable by KEDA pods) |
| share.enabled | bool | `true` | toggle deploying Alfresco Share UI |
| share.image.repository | string | `"quay.io/alfresco/alfresco-share"` | |
-| share.image.tag | string | `"23.3.2"` | |
+| share.image.tag | string | `"23.4.0"` | |
| share.nameOverride | string | `"share"` | |
| share.repository.existingConfigMap.keys.host | string | `"repo_svc_name"` | Name of the key in the configmap which points to the repository service hostname |
| share.repository.existingConfigMap.keys.port | string | `"repo_svc_port"` | Name of the key in the configmap which points to the repository service port |
diff --git a/helm/alfresco-content-services/community_values.yaml b/helm/alfresco-content-services/community_values.yaml
index 8c2299ba1..51dc99201 100644
--- a/helm/alfresco-content-services/community_values.yaml
+++ b/helm/alfresco-content-services/community_values.yaml
@@ -6,7 +6,7 @@ alfresco-repository:
replicaCount: 1
image:
repository: alfresco/alfresco-content-repository-community
- tag: 23.3.0
+ tag: 23.4.0
persistence:
accessModes:
- ReadWriteOnce
@@ -24,7 +24,7 @@ elasticsearch:
share:
image:
repository: alfresco/alfresco-share
- tag: 23.3.2
+ tag: 23.4.0
alfresco-search:
enabled: true
searchServicesImage:
diff --git a/helm/alfresco-content-services/pre-release_values.yaml b/helm/alfresco-content-services/pre-release_values.yaml
index 5b97c12f3..45d8daea4 100644
--- a/helm/alfresco-content-services/pre-release_values.yaml
+++ b/helm/alfresco-content-services/pre-release_values.yaml
@@ -2,7 +2,7 @@
# the chart
alfresco-repository:
image:
- tag: 23.4.0-A15
+ tag: 25.1.0-A.1
activemq:
image:
repository: quay.io/alfresco/alfresco-activemq
@@ -10,31 +10,31 @@ activemq:
alfresco-transform-service:
transformrouter:
image:
- tag: 4.1.5-A3
+ tag: 4.1.5
pdfrenderer:
image:
- tag: 5.1.5-A3
+ tag: 5.1.5
imagemagick:
image:
- tag: 5.1.5-A3
+ tag: 5.1.5
libreoffice:
image:
- tag: 5.1.5-A3
+ tag: 5.1.5
tika:
image:
- tag: 5.1.5-A3
+ tag: 5.1.5
transformmisc:
image:
- tag: 5.1.5-A3
+ tag: 5.1.5
filestore:
image:
- tag: 4.1.5-A3
+ tag: 4.1.5
alfresco-ai-transformer:
image:
- tag: 3.1.7-A4
+ tag: 3.1.7
share:
image:
- tag: 23.4.0-A15
+ tag: 25.1.0-A.1
alfresco-search:
searchServicesImage:
tag: 2.1.0-A9
@@ -44,25 +44,25 @@ alfresco-search-enterprise:
liveIndexing:
mediation:
image:
- tag: 4.2.0-A4
+ tag: 4.3.0-A.1
content:
image:
- tag: 4.2.0-A4
+ tag: 4.3.0-A.1
metadata:
image:
- tag: 4.2.0-A4
+ tag: 4.3.0-A.1
path:
image:
- tag: 4.2.0-A4
+ tag: 4.3.0-A.1
reindexing:
image:
- tag: 4.2.0-A4
+ tag: 4.3.0-A.1
alfresco-digital-workspace:
image:
- tag: 5.1.0-11106981658
+ tag: 5.3.0-12081248559
alfresco-control-center:
image:
- tag: 9.1.0-11106981658
+ tag: 9.3.0-12081248559
postgresql:
image:
tag: 14.4.0
@@ -80,12 +80,12 @@ alfresco-connector-msteams:
tag: 2.0.4-A4
alfresco-audit-storage:
image:
- tag: 1.0.0-A1
+ tag: 1.0.0
dtas:
config:
assertions:
acs:
- version: 23.4.0
+ version: 25.1.0
modules:
- id: org.alfresco.integrations.google.docs
version: 4.1.0
diff --git a/helm/alfresco-content-services/values.yaml b/helm/alfresco-content-services/values.yaml
index 6f8bb2a5d..5b4bb539a 100644
--- a/helm/alfresco-content-services/values.yaml
+++ b/helm/alfresco-content-services/values.yaml
@@ -142,7 +142,7 @@ alfresco-repository:
nameOverride: alfresco-repository
image:
repository: quay.io/alfresco/alfresco-content-repository
- tag: 23.3.2
+ tag: 23.4.0
autoscaling:
kedaDisableIdle: true
configuration:
@@ -198,7 +198,7 @@ alfresco-connector-ms365:
enabled: false
image:
repository: quay.io/alfresco/alfresco-ooi-service
- tag: 2.0.3
+ tag: 2.0.4
repository:
existingConfigMap:
# -- Name of the configmap which hold the repository connection details
@@ -215,7 +215,7 @@ alfresco-connector-msteams:
enabled: false
image:
repository: quay.io/alfresco/alfresco-ms-teams-service
- tag: 2.0.3
+ tag: 2.0.4
alfresco-transform-service:
nameOverride: alfresco-transform-service
enabled: true
@@ -232,7 +232,7 @@ alfresco-transform-service:
replicaCount: 2
image:
repository: quay.io/alfresco/alfresco-transform-router
- tag: 4.1.4
+ tag: 4.1.5
livenessProbe:
# -- Overrride liveness probe endpoint to work around
# https://alfresco.atlassian.net/browse/ACS-7269
@@ -243,35 +243,35 @@ alfresco-transform-service:
enabled: true
image:
repository: alfresco/alfresco-pdf-renderer
- tag: 5.1.4
+ tag: 5.1.5
imagemagick:
# -- Declares the alfresco-imagemagick service used by the content repository
# to transform image files
enabled: true
image:
repository: alfresco/alfresco-imagemagick
- tag: 5.1.4
+ tag: 5.1.5
libreoffice:
# -- Declares the alfresco-libreoffice service used by the content repository
# to transform office files
enabled: true
image:
repository: alfresco/alfresco-libreoffice
- tag: 5.1.4
+ tag: 5.1.5
tika:
# -- Declares the alfresco-tika service used by the content repository
# to transform office files
enabled: true
image:
repository: alfresco/alfresco-tika
- tag: 5.1.4
+ tag: 5.1.5
transformmisc:
# -- Declares the alfresco-tika service used by the content repository
# to transform office files
enabled: true
image:
repository: alfresco/alfresco-transform-misc
- tag: 5.1.4
+ tag: 5.1.5
filestore:
# -- Declares the alfresco-shared-file-store used by the content repository
# and transform service
@@ -280,7 +280,7 @@ alfresco-transform-service:
replicaCount: 1
image:
repository: quay.io/alfresco/alfresco-shared-file-store
- tag: 4.1.4
+ tag: 4.1.5
persistence:
# -- Persist filestore data
enabled: true
@@ -297,7 +297,7 @@ share:
enabled: true
image:
repository: quay.io/alfresco/alfresco-share
- tag: 23.3.2
+ tag: 23.4.0
nameOverride: share
repository:
existingConfigMap:
@@ -325,10 +325,10 @@ alfresco-search:
sharedSecret: SOLR_SECRET
searchServicesImage:
repository: quay.io/alfresco/search-services
- tag: 2.0.12
+ tag: 2.0.13
insightEngineImage:
repository: quay.io/alfresco/insight-engine
- tag: 2.0.12
+ tag: 2.0.13
nameOverride: alfresco-search
# If an external Solr service is to be used then enabled must be set to false
# and external has to be configured accordingly.
@@ -370,16 +370,16 @@ alfresco-search-enterprise:
liveIndexing:
mediation:
image:
- tag: 4.1.0
+ tag: 4.2.0
content:
image:
- tag: 4.1.0
+ tag: 4.2.0
metadata:
image:
- tag: 4.1.0
+ tag: 4.2.0
path:
image:
- tag: 4.1.0
+ tag: 4.2.0
reindexing:
enabled: true
repository:
@@ -391,7 +391,7 @@ alfresco-search-enterprise:
existingConfigMap:
name: *infrastructure_cmName
image:
- tag: 4.1.0
+ tag: 4.2.0
alfresco-digital-workspace:
enabled: true
nameOverride: "alfresco-dw"
@@ -405,7 +405,7 @@ alfresco-digital-workspace:
pathType: Prefix
image:
repository: quay.io/alfresco/alfresco-digital-workspace
- tag: 5.1.0
+ tag: 5.2.0
pullPolicy: IfNotPresent
env:
APP_CONFIG_PROVIDER: "ECM"
@@ -424,7 +424,7 @@ alfresco-control-center:
pathType: Prefix
image:
repository: quay.io/alfresco/alfresco-control-center
- tag: 9.1.0
+ tag: 9.2.0
pullPolicy: IfNotPresent
env:
APP_CONFIG_PROVIDER: "ECM"
@@ -477,7 +477,7 @@ alfresco-sync-service:
enabled: true
replicaCount: 1
image:
- tag: 4.0.1
+ tag: 5.1.0
database:
existingSecret:
name: *sync_database_secretName
@@ -531,7 +531,7 @@ alfresco-ai-transformer:
fullnameOverride: alfresco-intelligence-service
image:
repository: quay.io/alfresco/alfresco-ai-docker-engine
- tag: 3.1.6
+ tag: 3.1.7
sfs:
existingConfigMap:
# -- Name of the configmap which holds the ATS shared filestore URL
@@ -577,7 +577,7 @@ alfresco-audit-storage:
enabled: true
image:
repository: quay.io/alfresco/alfresco-audit-storage
- tag: 1.0.0-A1
+ tag: 1.0.0
messageBroker:
existingConfigMap:
# -- Name of the configmap which holds the message broker URL
@@ -649,19 +649,19 @@ dtas:
assertions:
acs:
edition: Enterprise
- version: 23.3.1
+ version: 23.4.0
identity: false
modules:
- id: org.alfresco.integrations.google.docs
version: 4.1.0
installed: true
- id: alfresco-aos-module
- version: 3.1.0
+ version: 3.2.0
installed: true
adw:
base_path: "/workspace"
aas:
- audit_host: http://acs-alfresco-audit-storage:8081
+ audit_host: http://acs-alfresco-audit-storage:8081
elasticsearch_host: http://elasticsearch-aas-master:9200
keda:
# -- The list of components that will be scaled by KEDA (chart names)