This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into es/update-values
- Loading branch information
Showing
37 changed files
with
133 additions
and
130 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,8 @@ maintainers: | |
- email: [email protected] | ||
name: Elastic | ||
name: elasticsearch | ||
version: 6.6.2-alpha1 | ||
appVersion: 6.6.2 | ||
version: 7.0.0-alpha1 | ||
appVersion: 7.0.0 | ||
sources: | ||
- https://github.com/elastic/elasticsearch | ||
icon: https://helm.elastic.co/icons/elasticsearch.png |
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,7 +1,7 @@ | ||
--- | ||
|
||
clusterName: "fivex" | ||
imageTag: "5.6.15" | ||
imageTag: "5.6.16" | ||
esMajorVersion: 5 | ||
|
||
extraEnvs: | ||
|
2 changes: 1 addition & 1 deletion
2
elasticsearch/examples/7.0.x/Makefile → elasticsearch/examples/6.x/Makefile
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,5 @@ | ||
--- | ||
|
||
clusterName: "six" | ||
imageTag: "6.7.1" | ||
esMajorVersion: 6 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
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,30 @@ | ||
#!/usr/bin/env python2 | ||
import re | ||
import os | ||
import glob | ||
import subprocess | ||
import fileinput | ||
|
||
os.chdir('../') | ||
|
||
versions = { | ||
5: '5.6.16', | ||
6: '6.7.1', | ||
7: '7.0.0', | ||
} | ||
|
||
file_patterns = [ | ||
'*/examples/*/test/goss.y*ml', | ||
'*/examples/*/*.y*ml', | ||
'*/README.md', | ||
'*/values.y*ml', | ||
'*/Chart.y*ml', | ||
] | ||
|
||
for major, version in versions.iteritems(): | ||
r = re.compile(r"{0}\.[0-9]*\.[0-9]*".format(major)) | ||
for pattern in file_patterns: | ||
for f in glob.glob(pattern): | ||
print(f) | ||
for line in fileinput.input([f], inplace=True): | ||
print r.sub(version, line.rstrip()) |
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 |
---|---|---|
|
@@ -4,8 +4,8 @@ maintainers: | |
- email: [email protected] | ||
name: Elastic | ||
name: kibana | ||
version: 6.6.2-alpha1 | ||
appVersion: 6.6.2 | ||
version: 7.0.0-alpha1 | ||
appVersion: 7.0.0 | ||
sources: | ||
- https://github.com/elastic/kibana | ||
icon: https://helm.elastic.co/icons/kibana.png |
Oops, something went wrong.