-
Notifications
You must be signed in to change notification settings - Fork 244
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OPSEXP-2298: fix wrong repository URL in search enterprise reindexing…
… job (#1035)
- Loading branch information
Showing
10 changed files
with
113 additions
and
67 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,6 +31,7 @@ jobs: | |
- uses: Alfresco/alfresco-build-tools/.github/actions/[email protected] | ||
- name: Add dependency chart repos | ||
run: | | ||
helm repo add alfresco-helm-charts https://alfresco.github.io/alfresco-helm-charts/ | ||
helm repo add alfresco-helm-charts https://alfresco.github.io/alfresco-helm-charts | ||
helm repo add activiti-cloud-helm-charts https://activiti.github.io/activiti-cloud-helm-charts | ||
helm repo add elasticsearch https://helm.elastic.co | ||
- uses: pre-commit/[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 13 additions & 4 deletions
17
helm/alfresco-content-services/templates/secret-search.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,20 @@ | ||
{{- if eq "secret" .Values.global.search.securecomms }} | ||
{{- $search_flavor := (include "alfresco-content-services.search.flavor" .) }} | ||
{{- if ne "noindex" $search_flavor }} | ||
{{- with .Values.global.search }} | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ .Values.global.search.secretName }} | ||
name: {{ .secretName }} | ||
labels: | ||
{{- include "alfresco-content-services.labels" . | nindent 4 }} | ||
{{- include "alfresco-content-services.labels" $ | nindent 4 }} | ||
type: Opaque | ||
data: | ||
SOLR_SECRET: {{ .Values.global.search.sharedSecret | default "" | b64enc | quote }} | ||
{{- if eq "secret" .securecomms }} | ||
SOLR_SECRET: {{ .sharedSecret | default "" | b64enc | quote }} | ||
{{- end }} | ||
{{- if eq "elasticsearch" (include "alfresco-content-services.search.flavor" $) }} | ||
SEARCH_USERNAME: {{ .username | default "" | b64enc | quote }} | ||
SEARCH_PASSWORD: {{ .password | default "" | b64enc | quote }} | ||
{{- end }} | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.