Skip to content

Commit e226c83

Browse files
authored
fix: es 7.10.2 backup (#2343)
Co-authored-by: kizuna-lek <kizuna-lek@users.noreply.github.com>
1 parent e3b5a4e commit e226c83

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

addons/elasticsearch/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Each Elasticsearch cluster consists of one or more nodes, and each node in a clu
2525

2626
### Versions
2727

28-
| Major Versions | Description |
29-
|---------------|-------------|
30-
| 7.x | 7.7.1,7.8.1,7.10.1 |
31-
| 8.x | 8.1.3, 8.8.2 |
28+
| Major Versions | Description |
29+
|---------------|---------------------------|
30+
| 7.x | 7.7.1,7.8.1,7.10.1,7.10.2 |
31+
| 8.x | 8.1.3, 8.8.2 |
3232

3333
## Prerequisites
3434

addons/elasticsearch/plugins/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ WORKDIR /plugins
55
# Install all plugins
66
RUN set -e && \
77
# IK plugins for all versions \
8-
for version in 6.8.23 7.7.1 7.8.1 7.10.1 8.1.3 8.8.2 8.15.5; do \
8+
for version in 6.8.23 7.7.1 7.8.1 7.10.1 7.10.2 8.1.3 8.8.2 8.15.5; do \
99
echo "Installing IK plugin for Elasticsearch $version"; \
1010
mkdir -p ./${version}/ik && \
1111
wget -q https://release.infinilabs.com/analysis-ik/stable/elasticsearch-analysis-ik-${version}.zip && \
@@ -19,7 +19,7 @@ RUN set -e && \
1919
done && \
2020
\
2121
# S3 plugins for 6.x and 7.x (8.x has it built-in) \
22-
for version in 6.8.23 7.7.1 7.8.1 7.10.1; do \
22+
for version in 6.8.23 7.7.1 7.8.1 7.10.1 7.10.2; do \
2323
echo "Installing S3 plugin for Elasticsearch $version"; \
2424
mkdir -p ./${version}/s3 && \
2525
wget -q https://artifacts.elastic.co/downloads/elasticsearch-plugins/repository-s3/repository-s3-${version}.zip && \

examples/elasticsearch/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ Each Elasticsearch cluster consists of one or more nodes, and each node in a clu
2525

2626
### Versions
2727

28-
| Major Versions | Description |
29-
|---------------|-------------|
30-
| 7.x | 7.7.1,7.8.1,7.10.1 |
31-
| 8.x | 8.1.3, 8.8.2 |
28+
| Major Versions | Description |
29+
|---------------|---------------------------|
30+
| 7.x | 7.7.1,7.8.1,7.10.1,7.10.2 |
31+
| 8.x | 8.1.3, 8.8.2 |
3232

3333
## Prerequisites
3434

examples/mysql/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ MySQL is a widely used, open-source relational database management system (RDBMS
2121
| Major Versions | Description |
2222
|---------------|--------------|
2323
| 5.7 | 5.7.44 |
24-
| 8.0 | \[8.0.30 ~ 8.0.39\] |
24+
| 8.0 | \[8.0.33 ~ 8.0.44\] |
2525
| 8.4 | 8.4.0 ~ 8.4.2|
2626

2727
## Prerequisites
@@ -62,7 +62,7 @@ spec:
6262
# ServiceVersion specifies the version of the Service expected to be
6363
# provisioned by this Component.
6464
# When componentDef is "mysql-8.0",
65-
# Valid options are: [8.0.30 to 8.0.39]
65+
# Valid options are: [8.0.33 to 8.0.44]
6666
serviceVersion: 8.0.35
6767
```
6868

examples/mysql/cluster.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
# ServiceVersion specifies the version of the Service expected to be
2626
# provisioned by this Component.
2727
# When componentDef is "mysql-8.0",
28-
# Valid options are: [8.0.30~8.0.39]
28+
# Valid options are: [8.0.33~8.0.44]
2929
serviceVersion: 8.0.35
3030
# Determines whether metrics exporter information is annotated on the
3131
# Component's headless Service.

0 commit comments

Comments
 (0)