Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OPSEXP-2917 Docs: remove unnecessary Solr shared secret for enterprise #1283

Merged
merged 4 commits into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion docs/helm/desktop-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ Once downloaded, execute the following to initiate the deployment.
```bash
helm install acs alfresco/alfresco-content-services \
--values local-dev_values.yaml \
--set global.search.sharedSecret=$(openssl rand -hex 24) \
--atomic \
--timeout 10m0s \
--namespace alfresco
Expand All @@ -131,6 +130,24 @@ helm install acs alfresco/alfresco-content-services \

The `helm` command above installs the most current released version of ACS Enterprise.

#### Enterprise with solr6

Use the above helm command with additional arguments that enable solr6 search engine on enterprise.

```bash
helm upgrade acs helm/alfresco-content-services \
pmacius marked this conversation as resolved.
Show resolved Hide resolved
--values docs/helm/values/local-dev_values.yaml \
--set alfresco-repository.configuration.search.flavor=solr6 \
--set global.search.sharedSecret=$(openssl rand -hex 24) \
--set alfresco-search-enterprise.enabled=false \
--set alfresco-search.enabled=true \
--set elasticsearch.enabled=false \
--set alfresco-audit-storage.enabled=false \
gionn marked this conversation as resolved.
Show resolved Hide resolved
--atomic \
--timeout 10m0s \
--namespace alfresco
```

#### Enterprise deployment for previous versions

Use the above helm commands and pass an additional argument as described in this [section](./README.md#previous-versions).
Expand Down
1 change: 0 additions & 1 deletion docs/helm/examples/external-hazelcast.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,6 @@ grand_parent: Helm
```bash
helm upgrade acs helm/alfresco-content-services \
--values local-dev_values.yaml \
--set global.search.sharedSecret=$(openssl rand -hex 24) \
--atomic \
--timeout 10m0s \
--values acs-hazelcast.yaml
Expand Down
1 change: 0 additions & 1 deletion docs/helm/examples/with-elasticsearch-auth.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ Deploy the ACS stack with the appropriate values files.

```bash
helm install acs ./helm/alfresco-content-services \
pmacius marked this conversation as resolved.
Show resolved Hide resolved
--set global.search.sharedSecret="$(openssl rand -hex 24)" \
--set global.known_urls=http://localhost \
--set global.alfrescoRegistryPullSecrets=quay-registry-secret \
--values docs/helm/values/local-dev_values.yaml \
Expand Down
Loading