Skip to content

Commit

Permalink
XENOPS-1187 revert disable MQ on community edition
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenboonen-xenit committed Oct 17, 2024
1 parent 7ef3a08 commit ae94c3a
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ For more information take a look at
* Required: false
* Default: true
* Description: Whether this is an enterprise version of Alfresco. In a community version Transform Service Router,
Transform Service Shared File Storage, Clustering (replica count should always have a max of 1 for ACS pods), MQ and
Transform Service Shared File Storage, Clustering (replica count should always have a max of 1 for ACS pods) and
Digital Workspace are disabled.

#### `general.hibernate`
Expand Down
2 changes: 0 additions & 2 deletions xenit-alfresco/templates/acs/acs-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,6 @@ data:
{{- end }}
{{- if not (.Values.general.enterprise) }}
GLOBAL_local.transform.service.enabled: 'true'
GLOBAL_messaging.subsystem.autoStart: 'false'
GLOBAL_repo.event2.enabled: 'false'
{{- end}}
{{- if .Values.transformServices.enabled }}
GLOBAL_transform.service.enabled: 'true'
Expand Down
2 changes: 1 addition & 1 deletion xenit-alfresco/templates/active-mq/mq-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and (.Values.mq.enabled) (.Values.general.enterprise) -}}
{{- if .Values.mq.enabled -}}
apiVersion: v1
kind: ConfigMap
metadata:
Expand Down
2 changes: 1 addition & 1 deletion xenit-alfresco/templates/active-mq/mq-deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and (.Values.mq.enabled) (.Values.general.enterprise) -}}
{{- if .Values.mq.enabled -}}
apiVersion: apps/v1
kind: Deployment
metadata:
Expand Down
2 changes: 1 addition & 1 deletion xenit-alfresco/templates/active-mq/mq-secret.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and (not .Values.general.secrets.mq.selfManaged) (.Values.mq.enabled) (.Values.general.enterprise) }}
{{- if and (not .Values.general.secrets.mq.selfManaged) (.Values.mq.enabled) }}
{{- $secret_name := "mq-secret" }}

apiVersion: v1
Expand Down
2 changes: 1 addition & 1 deletion xenit-alfresco/templates/active-mq/mq-service.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and (.Values.mq.enabled) (.Values.general.enterprise) -}}
{{- if .Values.mq.enabled -}}
apiVersion: v1
kind: Service
metadata:
Expand Down
2 changes: 1 addition & 1 deletion xenit-alfresco/templates/active-mq/network-policy.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{- if and (.Values.general.networkPolicies.enabled) (.Values.mq.enabled) (.Values.general.enterprise) }}
{{- if and (.Values.general.networkPolicies.enabled) (.Values.mq.enabled) }}
---
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
Expand Down

0 comments on commit ae94c3a

Please sign in to comment.