Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

[script] Update bumper script to handle SNAPSHOT versions #581

Merged
merged 2 commits into from
Apr 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apm-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ easily be overridden in the config value `apmConfig.apm-server.yml`.

## Installing

This chart is tested with the latest 7.7.x versions.
This chart is tested with the latest 7.7.0-SNAPSHOT versions.

* Add the elastic helm charts repo

Expand All @@ -46,7 +46,7 @@ This chart is tested with the latest 7.7.x versions.
git checkout -b 7.7 origin/7.7
```

* Install the latest 7.7.x-SNAPSHOT
* Install the latest 7.7.0-SNAPSHOT

```bash
helm install --name apm-server ./helm-charts/apm-server
Expand Down
4 changes: 2 additions & 2 deletions elasticsearch/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ If you currently have a cluster deployed with the [helm/charts stable](https://g

## Installing

This chart is tested with the latest 7.7.x versions.
This chart is tested with the latest 7.7.0-SNAPSHOT versions.

* Add the elastic helm charts repo

Expand All @@ -72,7 +72,7 @@ This chart is tested with the latest 7.7.x versions.
git checkout -b 7.7 origin/7.7
```

* Install the latest 7.7.x-SNAPSHOT
* Install the latest 7.7.0-SNAPSHOT

```bash
helm install --name elasticsearch ./helm-charts/elasticsearch
Expand Down
4 changes: 2 additions & 2 deletions filebeat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This helm chart is a lightweight way to configure and run our official [Filebeat

## Installing

This chart is tested with the latest 7.7.x versions.
This chart is tested with the latest 7.7.0-SNAPSHOT versions.

* Add the elastic helm charts repo

Expand All @@ -40,7 +40,7 @@ This chart is tested with the latest 7.7.x versions.
git checkout -b 7.7 origin/7.7
```

* Install the latest 7.7.x-SNAPSHOT
* Install the latest 7.7.0-SNAPSHOT

```bash
helm install --name filebeat ./helm-charts/filebeat
Expand Down
2 changes: 1 addition & 1 deletion helpers/bumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
print("Updating versions...")

for major, version in versions.iteritems():
r = re.compile(r"{0}\.[0-9]*\.[0-9]*-?[0-9]?".format(major))
r = re.compile(r"{0}\.[0-9]*\.[0-9]*-?(SNAPSHOT)?".format(major))
for pattern in file_patterns:
for f in glob.glob(pattern):
print(f)
Expand Down
4 changes: 2 additions & 2 deletions kibana/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ This helm chart is a lightweight way to configure and run our official [Kibana d

## Installing

This chart is tested with the latest 7.7.x versions.
This chart is tested with the latest 7.7.0-SNAPSHOT versions.

* Add the elastic helm charts repo

Expand All @@ -35,7 +35,7 @@ This chart is tested with the latest 7.7.x versions.
git checkout -b 7.7 origin/7.7
```

* Install the latest 7.7.x-SNAPSHOT
* Install the latest 7.7.0-SNAPSHOT

```bash
helm install --name kibana ./helm-charts/kibana
Expand Down
4 changes: 2 additions & 2 deletions logstash/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This helm chart is a lightweight way to configure and run our official [Logstash

## Installing

This chart is tested with the latest 7.7.x versions.
This chart is tested with the latest 7.7.0-SNAPSHOT versions.

* Add the elastic helm charts repo

Expand All @@ -44,7 +44,7 @@ This chart is tested with the latest 7.7.x versions.
git checkout -b 7.7 origin/7.7
```

* Install the latest 7.7.x-SNAPSHOT
* Install the latest 7.7.0-SNAPSHOT

```bash
helm install --name logstash ./helm-charts/logstash
Expand Down
4 changes: 2 additions & 2 deletions metricbeat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The workaround is to use `--force` argument for `helm upgrade` command which wil

## Installing

This chart is tested with the latest 7.7.x versions.
This chart is tested with the latest 7.7.0-SNAPSHOT versions.

* Add the elastic helm charts repo

Expand All @@ -49,7 +49,7 @@ This chart is tested with the latest 7.7.x versions.
git checkout -b 7.7 origin/7.7
```

* Install the latest 7.7.x-SNAPSHOT
* Install the latest 7.7.0-SNAPSHOT

```bash
helm install --name metricbeat ./helm-charts/metricbeat
Expand Down