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.
[stable/kibana] Fix initContainers indentation (helm#11324)
* [stable/kibana] Fix indentation for initContainers Signed-off-by: Pavel Dmytrenko <[email protected]> * [stable/kibana] Add test case Signed-off-by: Pavel Dmytrenko <[email protected]> * [stable/kibana] Bump version Signed-off-by: Pavel Dmytrenko <[email protected]> * [stable/kibana] Simplify dashboardImport testcase Signed-off-by: Pavel Dmytrenko <[email protected]> * [stable/kibana] Add testcase for all init container types Signed-off-by: Pavel Dmytrenko <[email protected]> * [stable/kibana] Update logtrail plugin to v6.6.0 compatible Signed-off-by: Pavel Dmytrenko <[email protected]>
- Loading branch information
1 parent
155659d
commit 482af9c
Showing
5 changed files
with
27 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
# enable all init container types | ||
|
||
# A dashboard is defined by a name and a string with the json payload or the download url | ||
dashboardImport: | ||
dashboards: | ||
k8s: https://raw.githubusercontent.com/monotek/kibana-dashboards/master/k8s-fluentd-elasticsearch.json | ||
|
||
# Enable the plugin init container with plugins retrieved from an URL | ||
plugins: | ||
enabled: true | ||
reset: false | ||
# Use <plugin_name,version,url> to add/upgrade plugin | ||
values: | ||
- logtrail,0.1.31,https://github.com/sivasamyk/logtrail/releases/download/v0.1.31/logtrail-6.6.0-0.1.31.zip | ||
# - other_plugin | ||
|
||
# Add your own init container | ||
initContainers: | ||
echo-container: | ||
image: "busybox" | ||
command: ['sh', '-c', 'echo Hello from init container! && sleep 3'] |
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