Skip to content

Commit cae9fee

Browse files
Merge pull request #1916 from lukas-vlcek/6x_fix_viaq_files
Bug 1838153: Fix index patterns in index templates
2 parents a9afb03 + 21bafde commit cae9fee

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

elasticsearch/index_patterns/com.redhat.viaq-openshift.index-pattern.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

elasticsearch/index_templates/com.redhat.viaq-openshift-operations.template.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
".all": {}
44
},
55
"index_patterns": [
6-
"infra-*",
7-
"audit.infra-*"
6+
"infra*",
7+
"audit*"
88
],
99
"mappings": {
1010
"_doc": {

elasticsearch/index_templates/com.redhat.viaq-openshift-project.template.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
"aliases": {
33
".all": {}
44
},
5-
"index_patterns": "app-*",
5+
"index_patterns": [
6+
"app*"
7+
],
68
"mappings": {
79
"_doc": {
810
"_meta": {

0 commit comments

Comments
 (0)