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-2902 Enable audit-storage components as default #1250

Merged
merged 1 commit into from
Nov 19, 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
6 changes: 3 additions & 3 deletions helm/alfresco-content-services/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| alfresco-ai-transformer.messageBroker.existingSecret.name | string | `"acs-alfresco-cs-brokersecret"` | Name of the configmap which holds the message broker credentials |
| alfresco-ai-transformer.sfs.existingConfigMap.keys.url | string | `"SFS_URL"` | Name of the key within the configmap which holds the sfs url |
| alfresco-ai-transformer.sfs.existingConfigMap.name | string | `"alfresco-infrastructure"` | Name of the configmap which holds the ATS shared filestore URL |
| alfresco-audit-storage.enabled | bool | `false` | |
| alfresco-audit-storage.enabled | bool | `true` | |
| alfresco-audit-storage.image.repository | string | `"quay.io/alfresco/alfresco-audit-storage"` | |
| alfresco-audit-storage.image.tag | string | `"1.0.0-A1"` | |
| alfresco-audit-storage.index.existingConfigMap.keys.url | string | `"AUDIT_ELASTICSEARCH_URL"` | |
Expand Down Expand Up @@ -241,7 +241,7 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| dtas.image.tag | string | `"v1.5.5"` | |
| elasticsearch-audit.clusterHealthCheckParams | string | `"wait_for_status=yellow&timeout=1s"` | |
| elasticsearch-audit.clusterName | string | `"elasticsearch-aas"` | |
| elasticsearch-audit.enabled | bool | `false` | Enables the embedded elasticsearch cluster for alfresco-audit-storage |
| elasticsearch-audit.enabled | bool | `true` | Enables the embedded elasticsearch cluster for alfresco-audit-storage |
| elasticsearch-audit.extraEnvs[0].name | string | `"ELASTIC_USERNAME"` | |
| elasticsearch-audit.extraEnvs[0].valueFrom.secretKeyRef.key | string | `"AUDIT_ELASTICSEARCH_USERNAME"` | |
| elasticsearch-audit.extraEnvs[0].valueFrom.secretKeyRef.name | string | `"alfresco-aas-elasticsearch-secret"` | |
Expand Down Expand Up @@ -279,7 +279,7 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| infrastructure.configMapName | string | `"alfresco-infrastructure"` | |
| keda.components | list | `[]` | The list of components that will be scaled by KEDA (chart names) |
| kibana-audit.elasticsearchHosts | string | `""` | Makes sure there is no default elasticsearch hosts defined |
| kibana-audit.enabled | bool | `false` | |
| kibana-audit.enabled | bool | `true` | |
| kibana-audit.extraEnvs[0].name | string | `"SERVER_BASEPATH"` | |
| kibana-audit.extraEnvs[0].value | string | `"/kibana"` | |
| kibana-audit.extraEnvs[1].name | string | `"SERVER_REWRITEBASEPATH"` | |
Expand Down
6 changes: 3 additions & 3 deletions helm/alfresco-content-services/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ elasticsearch:
clusterHealthCheckParams: "wait_for_status=yellow&timeout=1s"
elasticsearch-audit:
# -- Enables the embedded elasticsearch cluster for alfresco-audit-storage
enabled: false
enabled: true
nameOverride: elasticsearch-aas
replicas: 1
clusterHealthCheckParams: "wait_for_status=yellow&timeout=1s"
Expand All @@ -574,7 +574,7 @@ elasticsearch-audit:
# https://github.com/elastic/helm-charts/blob/main/elasticsearch/values.yaml#L255
enabled: false
alfresco-audit-storage:
enabled: false
enabled: true
image:
repository: quay.io/alfresco/alfresco-audit-storage
tag: 1.0.0-A1
Expand All @@ -596,7 +596,7 @@ alfresco-audit-storage:
username: AUDIT_ELASTICSEARCH_USERNAME
password: AUDIT_ELASTICSEARCH_PASSWORD
kibana-audit:
enabled: false
enabled: true
healthCheckPath: "/kibana/app/kibana"
# -- Makes sure there is no default elasticsearch hosts defined
elasticsearchHosts: ""
Expand Down
Loading