-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Development][Add] Added Index template support (#13)
* Updated lifecycle CRD Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Updated CRD for index template Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Updated CRD for index template Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Updated CRD for index template Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Updated Documentation Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Updated Documentation Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Added function to generate index template Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Added elastic connection details Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Added code for index template Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Added controller for index template Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Updated helm charts for latest code Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com> * Updated Documentation for latest code Signed-off-by: iamabhishek-dubey <abhishekbhardwaj510@gmail.com>
- Loading branch information
1 parent
d31f564
commit 61e5121
Showing
13 changed files
with
375 additions
and
98 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
apiVersion: logging.opstreelabs.in/v1alpha1 | ||
kind: IndexTemplate | ||
metadata: | ||
name: indextemplate-sample | ||
spec: | ||
enabled: true | ||
indexPatterns: ["kubernetes-default-*", "kubernetes-istio-system-*"] | ||
settings: | ||
shards: 1 | ||
replicas: 1 | ||
indexLifeCycleName: indexlifecycle-example | ||
rolloverAlias: "kubernetes" | ||
elasticsearch: | ||
host: "https://elasticsearch-cluster-ingestion:9200" | ||
username: elastic | ||
password: "Opstree@1234" |
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,3 +1,4 @@ | ||
--- | ||
apiVersion: logging.opstreelabs.in/v1alpha1 | ||
kind: IndexLifecycle | ||
metadata: | ||
|
This file was deleted.
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
Oops, something went wrong.