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-2885 Fix secret template bug in search enterprise correcting search username reference #400

Merged
merged 1 commit into from
Oct 28, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion charts/alfresco-search-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apiVersion: v2
name: alfresco-search-enterprise
description: A Helm chart for deploying Alfresco Elasticsearch connector
type: application
version: 4.2.0-alpha.1
version: 4.2.0-alpha.2
appVersion: 4.1.0
dependencies:
- name: alfresco-common
Expand Down
4 changes: 2 additions & 2 deletions charts/alfresco-search-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ parent: Charts Reference

# alfresco-search-enterprise

![Version: 4.2.0-alpha.1](https://img.shields.io/badge/Version-4.2.0--alpha.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.1.0](https://img.shields.io/badge/AppVersion-4.1.0-informational?style=flat-square)
![Version: 4.2.0-alpha.2](https://img.shields.io/badge/Version-4.2.0--alpha.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.1.0](https://img.shields.io/badge/AppVersion-4.1.0-informational?style=flat-square)

A Helm chart for deploying Alfresco Elasticsearch connector

Expand Down Expand Up @@ -131,7 +131,7 @@ Checkout [alfresco-content-services chart's doc](https://github.com/Alfresco/acs
| search.existingSecret.name | string | `nil` | Alternatively, provide search/indexing credentials via an existing secret |
| search.password | string | `nil` | The password required to access the search/indexing service, if any |
| search.url | string | `nil` | The URL where the search/indexing service is available |
| search.user | string | `nil` | The username required to access the search/indexing service, if any |
| search.username | string | `nil` | The username required to access the search/indexing service, if any |
| securityContext | object | `{}` | |
| serviceAccount.annotations | object | `{}` | |
| serviceAccount.create | bool | `true` | |
Expand Down
2 changes: 1 addition & 1 deletion charts/alfresco-search-enterprise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ search:
# -- The URL where the search/indexing service is available
url: null
# -- The username required to access the search/indexing service, if any
user: null
username: null
# -- The password required to access the search/indexing service, if any
password: null
existingConfigMap:
Expand Down
Loading