Skip to content

Commit

Permalink
try some workarounds
Browse files Browse the repository at this point in the history
  • Loading branch information
pmacius committed Dec 9, 2024
1 parent 5cd4931 commit ba5b4ec
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
9 changes: 8 additions & 1 deletion helm/alfresco-content-services/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -252,10 +252,14 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| elasticsearch-audit.extraEnvs[1].valueFrom.secretKeyRef.name | string | `"alfresco-aas-elasticsearch-secret"` | |
| elasticsearch-audit.ingress.enabled | bool | `false` | toggle deploying elasticsearch-audit ingress for more details about configuration check https://github.com/elastic/helm-charts/blob/main/elasticsearch/values.yaml#L255 |
| elasticsearch-audit.nameOverride | string | `"elasticsearch-aas"` | |
| elasticsearch-audit.protocol | string | `"http"` | |
| elasticsearch-audit.replicas | int | `1` | |
| elasticsearch-audit.secret.enabled | bool | `false` | |
| elasticsearch.clusterHealthCheckParams | string | `"wait_for_status=yellow&timeout=1s"` | |
| elasticsearch.enabled | bool | `true` | Enables the embedded elasticsearch cluster |
| elasticsearch.protocol | string | `"http"` | |
| elasticsearch.replicas | int | `1` | |
| elasticsearch.secret.enabled | bool | `false` | |
| global.alfrescoRegistryPullSecrets | string | `nil` | If a private image registry a secret can be defined and passed to kubernetes, see: https://github.com/Alfresco/acs-deployment/blob/a924ad6670911f64f1bba680682d266dd4ea27fb/docs/helm/eks-deployment.md#docker-registry-secret |
| global.auditIndex.existingSecretName | string | `nil` | Name of an existing secret that contains AUDIT_ELASTICSEARCH_USERNAME and AUDIT_ELASTICSEARCH_PASSWORD keys. |
| global.auditIndex.password | string | `nil` | Elasticsearch password |
Expand All @@ -280,7 +284,10 @@ Please refer to the [documentation](https://github.com/Alfresco/acs-deployment/b
| global.strategy.rollingUpdate.maxUnavailable | int | `0` | |
| 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.elasticsearchCertificateAuthoritiesFile | string | `""` | |
| kibana-audit.elasticsearchCertificateSecret | string | `""` | |
| kibana-audit.elasticsearchCredentialSecret | string | `""` | |
| kibana-audit.elasticsearchHosts | string | `""` | Makes sure there is no default elasticsearch hosts, certs and secrets defined |
| kibana-audit.enabled | bool | `true` | |
| kibana-audit.extraEnvs[0].name | string | `"SERVER_BASEPATH"` | |
| kibana-audit.extraEnvs[0].value | string | `"/kibana"` | |
Expand Down
11 changes: 10 additions & 1 deletion helm/alfresco-content-services/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -551,13 +551,19 @@ elasticsearch:
enabled: true
replicas: 1
clusterHealthCheckParams: "wait_for_status=yellow&timeout=1s"
secret:
enabled: false
protocol: http
elasticsearch-audit:
# -- Enables the embedded elasticsearch cluster for alfresco-audit-storage
enabled: true
nameOverride: elasticsearch-aas
replicas: 1
clusterHealthCheckParams: "wait_for_status=yellow&timeout=1s"
clusterName: elasticsearch-aas
secret:
enabled: false
protocol: http
extraEnvs:
- name: ELASTIC_USERNAME
valueFrom:
Expand Down Expand Up @@ -598,8 +604,11 @@ alfresco-audit-storage:
kibana-audit:
enabled: true
healthCheckPath: "/kibana/app/kibana"
# -- Makes sure there is no default elasticsearch hosts defined
# -- Makes sure there is no default elasticsearch hosts, certs and secrets defined
elasticsearchHosts: ""
elasticsearchCertificateSecret: ""
elasticsearchCertificateAuthoritiesFile: ""
elasticsearchCredentialSecret: ""
# All of the values has to be set there to escape the issue with overriding the values
extraEnvs:
- name: SERVER_BASEPATH
Expand Down

0 comments on commit ba5b4ec

Please sign in to comment.