forked from helm/charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[incubator/elasticsearch] added extraInitContainers option (helm#7587)
* added extraInitContainers option Signed-off-by: André Bauer <[email protected]> * added ci test with extrainitcontainers values Signed-off-by: André Bauer <[email protected]> * updated elasticsearch to version 6.4.1 Signed-off-by: André Bauer <[email protected]> * updated version also in values file Signed-off-by: André Bauer <[email protected]>
- Loading branch information
1 parent
8af9ba3
commit ad307f6
Showing
7 changed files
with
32 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
extraInitContainers: | | ||
- name: "plugin-install-ingest-attachment" | ||
image: "docker.elastic.co/elasticsearch/elasticsearch-oss:6.4.0" | ||
command: ["/bin/bash"] | ||
args: ["-c", "yes | /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-attachment"] | ||
- name: "plugin-install-mapper-size" | ||
image: "docker.elastic.co/elasticsearch/elasticsearch-oss:6.4.0" | ||
command: ["/bin/bash"] | ||
args: ["-c", "yes | /usr/share/elasticsearch/bin/elasticsearch-plugin install mapper-size"] |
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 |
---|---|---|
|
@@ -119,3 +119,6 @@ data: | |
maxUnavailable: 1 | ||
updateStrategy: | ||
type: OnDelete | ||
|
||
## Additional init containers | ||
extraInitContainers: | |