Skip to content

Commit

Permalink
Merge pull request #120 from xenit-eu/split-enable-transform-services
Browse files Browse the repository at this point in the history
make transformation services components each enable configurable
  • Loading branch information
hechmi-dammak-xenit authored Dec 12, 2023
2 parents 10d92fe + 5af906e commit 5fbe62e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions xenit-alfresco/templates/acs/acs-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ data:
{{- end }}
{{- if .Values.transformServices.enabled }}
GLOBAL_transform.service.enabled: 'true'
{{- if not .Values.transformServices.transformRouter.enabled }}
{{- if .Values.transformServices.transformRouter.enabled }}
GLOBAL_transform.service.url: 'http://transform-router-service:30500'
{{- end }}
{{- if not .Values.transformServices.sharedFileStore.enabled }}
{{- if .Values.transformServices.sharedFileStore.enabled }}
GLOBAL_sfs.url: 'http://shared-file-store-service:80/'
{{- end }}
{{- if not .Values.transformServices.transformCoreAio.enabled }}
{{- if .Values.transformServices.transformCoreAio.enabled }}
GLOBAL_localTransform.core-aio.url: 'http://transform-core-aio-service:80/'
{{- end }}
{{- else }}
Expand Down

0 comments on commit 5fbe62e

Please sign in to comment.