Skip to content

Commit a156259

Browse files
1gtmtamalsaha
andauthored
Prepare for release v2021.08.02 (#191)
* Prepare for release v2021.08.02 ProductLine: Stash Release: v2021.08.02 Release-tracker: stashed/CHANGELOG#39 Signed-off-by: 1gtm <1gtm@appscode.com> * Fix --redis-args Signed-off-by: Tamal Saha <tamal@appscode.com> Co-authored-by: Tamal Saha <tamal@appscode.com>
1 parent 236344e commit a156259

File tree

153 files changed

+569
-177
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+569
-177
lines changed

apis/installer/v1alpha1/stash_catalog_types.go

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ type StashCatalogSpec struct {
5252
Mysql StashMysqlSpec `json:"mysql"`
5353
PerconaXtraDB StashPerconaXtraDBSpec `json:"perconaxtradb"`
5454
Postgres StashPostgresSpec `json:"postgres"`
55+
Redis StashRedisSpec `json:"redis"`
5556
}
5657

5758
// StashElasticsearchSpec is the schema for Stash Elasticsearch values file
@@ -162,6 +163,23 @@ type PostgresRestore struct {
162163
Args string `json:"args"`
163164
}
164165

166+
// StashRedisSpec is the schema for Stash Redis values file
167+
type StashRedisSpec struct {
168+
Enabled bool `json:"enabled"`
169+
Backup RedisBackup `json:"backup"`
170+
Restore RedisRestore `json:"restore"`
171+
}
172+
173+
type RedisBackup struct {
174+
// +optional
175+
Args string `json:"args"`
176+
}
177+
178+
type RedisRestore struct {
179+
// +optional
180+
Args string `json:"args"`
181+
}
182+
165183
// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
166184

167185
// StashCatalogList is a list of StashCatalogs

apis/installer/v1alpha1/zz_generated.deepcopy.go

Lines changed: 51 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

catalog/catalog.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -5,62 +5,62 @@
55
{
66
"name": "elasticsearch",
77
"versions": [
8-
"5.6.4-v11",
9-
"6.2.4-v11",
10-
"6.3.0-v11",
11-
"6.4.0-v11",
12-
"6.5.3-v11",
13-
"6.8.0-v11",
14-
"7.2.0-v11",
15-
"7.3.2-v11"
8+
"5.6.4-v12",
9+
"6.2.4-v12",
10+
"6.3.0-v12",
11+
"6.4.0-v12",
12+
"6.5.3-v12",
13+
"6.8.0-v12",
14+
"7.2.0-v12",
15+
"7.3.2-v12"
1616
]
1717
},
1818
{
1919
"name": "mariadb",
2020
"versions": [
21-
"10.5.8-v4"
21+
"10.5.8-v5"
2222
]
2323
},
2424
{
2525
"name": "mongodb",
2626
"versions": [
27-
"3.4.17-v10",
28-
"3.4.22-v10",
29-
"3.6.8-v10",
30-
"3.6.13-v10",
31-
"4.0.3-v10",
32-
"4.0.5-v10",
33-
"4.0.11-v10",
34-
"4.1.4-v10",
35-
"4.1.7-v10",
36-
"4.1.13-v10",
37-
"4.2.3-v10",
38-
"4.4.6-v1"
27+
"3.4.17-v11",
28+
"3.4.22-v11",
29+
"3.6.8-v11",
30+
"3.6.13-v11",
31+
"4.0.3-v11",
32+
"4.0.5-v11",
33+
"4.0.11-v11",
34+
"4.1.4-v11",
35+
"4.1.7-v11",
36+
"4.1.13-v11",
37+
"4.2.3-v11",
38+
"4.4.6-v2"
3939
]
4040
},
4141
{
4242
"name": "mysql",
4343
"versions": [
44-
"5.7.25-v11",
45-
"8.0.3-v11",
46-
"8.0.14-v11",
47-
"8.0.21-v5"
44+
"5.7.25-v12",
45+
"8.0.3-v12",
46+
"8.0.14-v12",
47+
"8.0.21-v6"
4848
]
4949
},
5050
{
5151
"name": "percona-xtradb",
5252
"versions": [
53-
"5.7-v6"
53+
"5.7-v7"
5454
]
5555
},
5656
{
5757
"name": "postgres",
5858
"versions": [
59-
"9.6.19-v9",
60-
"10.14-v9",
61-
"11.9-v9",
62-
"12.4-v9",
63-
"13.1-v6"
59+
"9.6.19-v10",
60+
"10.14-v10",
61+
"11.9-v10",
62+
"12.4-v10",
63+
"13.1-v7"
6464
]
6565
},
6666
{

catalog/raw/elasticsearch/5.6.4/elasticsearch-backup-function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
3333
- --output-dir=${outputDir:=}
3434
- --license-apiservice=${LICENSE_APISERVICE:=}
35-
image: stashed/stash-elasticsearch:5.6.4-v11
35+
image: stashed/stash-elasticsearch:5.6.4-v12
3636
volumeMounts:
3737
- mountPath: /etc/repository/secret
3838
name: ${secretVolume}

catalog/raw/elasticsearch/5.6.4/elasticsearch-restore-function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- --es-args=${args:=}
2525
- --output-dir=${outputDir:=}
2626
- --license-apiservice=${LICENSE_APISERVICE:=}
27-
image: stashed/stash-elasticsearch:5.6.4-v11
27+
image: stashed/stash-elasticsearch:5.6.4-v12
2828
volumeMounts:
2929
- mountPath: /etc/repository/secret
3030
name: ${secretVolume}

catalog/raw/elasticsearch/6.2.4/elasticsearch-backup-function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
3333
- --output-dir=${outputDir:=}
3434
- --license-apiservice=${LICENSE_APISERVICE:=}
35-
image: stashed/stash-elasticsearch:6.2.4-v11
35+
image: stashed/stash-elasticsearch:6.2.4-v12
3636
volumeMounts:
3737
- mountPath: /etc/repository/secret
3838
name: ${secretVolume}

catalog/raw/elasticsearch/6.2.4/elasticsearch-restore-function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- --es-args=${args:=}
2525
- --output-dir=${outputDir:=}
2626
- --license-apiservice=${LICENSE_APISERVICE:=}
27-
image: stashed/stash-elasticsearch:6.2.4-v11
27+
image: stashed/stash-elasticsearch:6.2.4-v12
2828
volumeMounts:
2929
- mountPath: /etc/repository/secret
3030
name: ${secretVolume}

catalog/raw/elasticsearch/6.3.0/elasticsearch-backup-function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
3333
- --output-dir=${outputDir:=}
3434
- --license-apiservice=${LICENSE_APISERVICE:=}
35-
image: stashed/stash-elasticsearch:6.3.0-v11
35+
image: stashed/stash-elasticsearch:6.3.0-v12
3636
volumeMounts:
3737
- mountPath: /etc/repository/secret
3838
name: ${secretVolume}

catalog/raw/elasticsearch/6.3.0/elasticsearch-restore-function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
- --es-args=${args:=}
2525
- --output-dir=${outputDir:=}
2626
- --license-apiservice=${LICENSE_APISERVICE:=}
27-
image: stashed/stash-elasticsearch:6.3.0-v11
27+
image: stashed/stash-elasticsearch:6.3.0-v12
2828
volumeMounts:
2929
- mountPath: /etc/repository/secret
3030
name: ${secretVolume}

catalog/raw/elasticsearch/6.4.0/elasticsearch-backup-function.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
3333
- --output-dir=${outputDir:=}
3434
- --license-apiservice=${LICENSE_APISERVICE:=}
35-
image: stashed/stash-elasticsearch:6.4.0-v11
35+
image: stashed/stash-elasticsearch:6.4.0-v12
3636
volumeMounts:
3737
- mountPath: /etc/repository/secret
3838
name: ${secretVolume}

0 commit comments

Comments
 (0)