Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Temporary backfill of missed versions #208

Merged
merged 1 commit into from
Aug 28, 2023
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
Temporary backfill of missed versions
  • Loading branch information
yosifkit committed Aug 23, 2023
commit ae7c373dd5eed001b3b9b3676a1897bad7a4a846
17 changes: 17 additions & 0 deletions 7.17.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Elasticsearch 7.17.11

# This image re-bundles the Docker image from the upstream provider, Elastic.
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.11@sha256:f16e76d9de2996b7b94fb67b7087cba1b1b9267a8837da3b431f9213d5f48792
# Supported Bashbrew Architectures: amd64 arm64v8

# The upstream image was built by:
# https://github.com/elastic/dockerfiles/tree/v7.17.11/elasticsearch

# The build can be reproduced locally via:
# docker build 'https://github.com/elastic/dockerfiles.git#v7.17.11:elasticsearch'

# For a full list of supported images and tags visit https://www.docker.elastic.co

# For Elasticsearch documentation visit https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html

# See https://github.com/docker-library/official-images/pull/4916 for more details.
17 changes: 17 additions & 0 deletions 8.8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Elasticsearch 8.8.2

# This image re-bundles the Docker image from the upstream provider, Elastic.
FROM docker.elastic.co/elasticsearch/elasticsearch:8.8.2@sha256:ec03cfb360d7b0dc576fd8ae2ad2306b988a7dd461eba3fad69f9ef69ee602de
# Supported Bashbrew Architectures: amd64 arm64v8

# The upstream image was built by:
# https://github.com/elastic/dockerfiles/tree/v8.8.2/elasticsearch

# The build can be reproduced locally via:
# docker build 'https://github.com/elastic/dockerfiles.git#v8.8.2:elasticsearch'

# For a full list of supported images and tags visit https://www.docker.elastic.co

# For Elasticsearch documentation visit https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html

# See https://github.com/docker-library/official-images/pull/4916 for more details.
17 changes: 17 additions & 0 deletions 8.9.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Elasticsearch 8.9.0

# This image re-bundles the Docker image from the upstream provider, Elastic.
FROM docker.elastic.co/elasticsearch/elasticsearch:8.9.0@sha256:33d0cb2bb128ddcfbce810e2afd5a30d110ee21778e8805940c4d37f5ab80601
# Supported Bashbrew Architectures: amd64 arm64v8

# The upstream image was built by:
# https://github.com/elastic/dockerfiles/tree/v8.9.0/elasticsearch

# The build can be reproduced locally via:
# docker build 'https://github.com/elastic/dockerfiles.git#v8.9.0:elasticsearch'

# For a full list of supported images and tags visit https://www.docker.elastic.co

# For Elasticsearch documentation visit https://www.elastic.co/guide/en/elasticsearch/reference/current/docker.html

# See https://github.com/docker-library/official-images/pull/4916 for more details.
2 changes: 1 addition & 1 deletion update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ for version in "${versions[@]}"; do
fi

fullVersion="$(
grep -P "^\Qv$rcVersion." <<<"$tags" \
grep -P "^\Qv$rcVersion" <<<"$tags" \
| grep $rcGrepV -E -- '-(alpha|beta|rc)' \
| tail -1
)"
Expand Down