-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drupal: Added support for Elasticsearch 8.
- Loading branch information
Showing
67 changed files
with
1,332 additions
and
852 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
apiVersion: v1 | ||
description: Official Elastic helm chart for Elasticsearch. | ||
description: Official Elastic helm chart for Elasticsearch | ||
home: https://github.com/elastic/helm-charts | ||
maintainers: | ||
- email: helm-charts@elastic.co | ||
name: Elastic | ||
- email: helm-charts@elastic.co | ||
name: Elastic | ||
name: elasticsearch | ||
version: 7.8.1 | ||
appVersion: 7.8.1 | ||
version: 8.5.1 | ||
appVersion: 8.5.1 | ||
sources: | ||
- https://github.com/elastic/elasticsearch | ||
icon: https://helm.elastic.co/icons/elasticsearch.png |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,29 @@ | ||
--- | ||
|
||
clusterName: "config" | ||
replicas: 1 | ||
|
||
extraEnvs: | ||
- name: ELASTIC_PASSWORD | ||
valueFrom: | ||
secretKeyRef: | ||
name: elastic-credentials | ||
name: elastic-config-credentials | ||
key: password | ||
- name: ELASTIC_USERNAME | ||
valueFrom: | ||
secretKeyRef: | ||
name: elastic-credentials | ||
key: username | ||
|
||
# This is just a dummy file to make sure that | ||
# the keystore can be mounted at the same time | ||
# as a custom elasticsearch.yml | ||
esConfig: | ||
elasticsearch.yml: | | ||
xpack.security.enabled: true | ||
path.data: /usr/share/elasticsearch/data | ||
keystore: | ||
- secretName: elastic-config-secret | ||
- secretName: elastic-config-slack | ||
- secretName: elastic-config-custom-path | ||
items: | ||
- key: slack_url | ||
path: xpack.notification.slack.account.otheraccount.secure_url | ||
- key: slack_url | ||
path: xpack.notification.slack.account.otheraccount.secure_url | ||
|
||
secret: | ||
enabled: false |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
default: test | ||
|
||
RELEASE := helm-es-docker-for-mac | ||
TIMEOUT := 1200s | ||
|
||
install: | ||
helm upgrade --wait --timeout=900 --install --values values.yaml $(RELEASE) ../../ | ||
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values.yaml $(RELEASE) ../../ | ||
|
||
test: install | ||
helm test $(RELEASE) | ||
|
||
purge: | ||
helm del --purge $(RELEASE) | ||
helm del $(RELEASE) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,17 @@ | ||
default: test | ||
|
||
RELEASE := helm-es-kind | ||
TIMEOUT := 1200s | ||
|
||
install: | ||
helm upgrade --wait --timeout=900 --install --values values.yaml $(RELEASE) ../../ | ||
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values.yaml $(RELEASE) ../../ | ||
|
||
install-local-path: | ||
kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/master/deploy/local-path-storage.yaml | ||
helm upgrade --wait --timeout=900 --install --values values-local-path.yaml $(RELEASE) ../../ | ||
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values-local-path.yaml $(RELEASE) ../../ | ||
|
||
test: install | ||
helm test $(RELEASE) | ||
|
||
purge: | ||
helm del --purge $(RELEASE) | ||
helm del $(RELEASE) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
default: test | ||
|
||
RELEASE := helm-es-microk8s | ||
TIMEOUT := 1200s | ||
|
||
install: | ||
helm upgrade --wait --timeout=900 --install --values values.yaml $(RELEASE) ../../ | ||
helm upgrade --wait --timeout=$(TIMEOUT) --install --values values.yaml $(RELEASE) ../../ | ||
|
||
test: install | ||
helm test $(RELEASE) | ||
|
||
purge: | ||
helm del --purge $(RELEASE) | ||
helm del $(RELEASE) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
PREFIX := helm-es-migration | ||
|
||
data: | ||
helm upgrade --wait --timeout=600 --install --values ./data.yml $(PREFIX)-data ../../ | ||
helm upgrade --wait --timeout=$(TIMEOUT) --install --values data.yaml $(PREFIX)-data ../../ | ||
|
||
master: | ||
helm upgrade --wait --timeout=600 --install --values ./master.yml $(PREFIX)-master ../../ | ||
helm upgrade --wait --timeout=$(TIMEOUT) --install --values master.yaml $(PREFIX)-master ../../ | ||
|
||
client: | ||
helm upgrade --wait --timeout=600 --install --values ./client.yml $(PREFIX)-client ../../ | ||
helm upgrade --wait --timeout=$(TIMEOUT) --install --values client.yaml $(PREFIX)-client ../../ |
Oops, something went wrong.