Skip to content

Commit

Permalink
Prepare for release v2021.08.02 (#191)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
1gtm and tamalsaha authored Jul 31, 2021
1 parent 236344e commit a156259
Show file tree
Hide file tree
Showing 153 changed files with 569 additions and 177 deletions.
18 changes: 18 additions & 0 deletions apis/installer/v1alpha1/stash_catalog_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ type StashCatalogSpec struct {
Mysql StashMysqlSpec `json:"mysql"`
PerconaXtraDB StashPerconaXtraDBSpec `json:"perconaxtradb"`
Postgres StashPostgresSpec `json:"postgres"`
Redis StashRedisSpec `json:"redis"`
}

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

// StashRedisSpec is the schema for Stash Redis values file
type StashRedisSpec struct {
Enabled bool `json:"enabled"`
Backup RedisBackup `json:"backup"`
Restore RedisRestore `json:"restore"`
}

type RedisBackup struct {
// +optional
Args string `json:"args"`
}

type RedisRestore struct {
// +optional
Args string `json:"args"`
}

// +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object

// StashCatalogList is a list of StashCatalogs
Expand Down
51 changes: 51 additions & 0 deletions apis/installer/v1alpha1/zz_generated.deepcopy.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

62 changes: 31 additions & 31 deletions catalog/catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,62 +5,62 @@
{
"name": "elasticsearch",
"versions": [
"5.6.4-v11",
"6.2.4-v11",
"6.3.0-v11",
"6.4.0-v11",
"6.5.3-v11",
"6.8.0-v11",
"7.2.0-v11",
"7.3.2-v11"
"5.6.4-v12",
"6.2.4-v12",
"6.3.0-v12",
"6.4.0-v12",
"6.5.3-v12",
"6.8.0-v12",
"7.2.0-v12",
"7.3.2-v12"
]
},
{
"name": "mariadb",
"versions": [
"10.5.8-v4"
"10.5.8-v5"
]
},
{
"name": "mongodb",
"versions": [
"3.4.17-v10",
"3.4.22-v10",
"3.6.8-v10",
"3.6.13-v10",
"4.0.3-v10",
"4.0.5-v10",
"4.0.11-v10",
"4.1.4-v10",
"4.1.7-v10",
"4.1.13-v10",
"4.2.3-v10",
"4.4.6-v1"
"3.4.17-v11",
"3.4.22-v11",
"3.6.8-v11",
"3.6.13-v11",
"4.0.3-v11",
"4.0.5-v11",
"4.0.11-v11",
"4.1.4-v11",
"4.1.7-v11",
"4.1.13-v11",
"4.2.3-v11",
"4.4.6-v2"
]
},
{
"name": "mysql",
"versions": [
"5.7.25-v11",
"8.0.3-v11",
"8.0.14-v11",
"8.0.21-v5"
"5.7.25-v12",
"8.0.3-v12",
"8.0.14-v12",
"8.0.21-v6"
]
},
{
"name": "percona-xtradb",
"versions": [
"5.7-v6"
"5.7-v7"
]
},
{
"name": "postgres",
"versions": [
"9.6.19-v9",
"10.14-v9",
"11.9-v9",
"12.4-v9",
"13.1-v6"
"9.6.19-v10",
"10.14-v10",
"11.9-v10",
"12.4-v10",
"13.1-v7"
]
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:5.6.4-v11
image: stashed/stash-elasticsearch:5.6.4-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- --es-args=${args:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:5.6.4-v11
image: stashed/stash-elasticsearch:5.6.4-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.2.4-v11
image: stashed/stash-elasticsearch:6.2.4-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- --es-args=${args:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.2.4-v11
image: stashed/stash-elasticsearch:6.2.4-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.3.0-v11
image: stashed/stash-elasticsearch:6.3.0-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- --es-args=${args:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.3.0-v11
image: stashed/stash-elasticsearch:6.3.0-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.4.0-v11
image: stashed/stash-elasticsearch:6.4.0-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- --es-args=${args:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.4.0-v11
image: stashed/stash-elasticsearch:6.4.0-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.5.3-v11
image: stashed/stash-elasticsearch:6.5.3-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- --es-args=${args:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.5.3-v11
image: stashed/stash-elasticsearch:6.5.3-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.8.0-v11
image: stashed/stash-elasticsearch:6.8.0-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- --es-args=${args:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:6.8.0-v11
image: stashed/stash-elasticsearch:6.8.0-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:7.2.0-v11
image: stashed/stash-elasticsearch:7.2.0-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- --es-args=${args:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:7.2.0-v11
image: stashed/stash-elasticsearch:7.2.0-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:7.3.2-v11
image: stashed/stash-elasticsearch:7.3.2-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
- --es-args=${args:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-elasticsearch:7.3.2-v11
image: stashed/stash-elasticsearch:7.3.2-v12
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
2 changes: 1 addition & 1 deletion catalog/raw/mariadb/10.5.8/mariadb-backup-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-mariadb:10.5.8-v4
image: stashed/stash-mariadb:10.5.8-v5
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
2 changes: 1 addition & 1 deletion catalog/raw/mariadb/10.5.8/mariadb-restore-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
- --snapshot=${RESTORE_SNAPSHOTS:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-mariadb:10.5.8-v4
image: stashed/stash-mariadb:10.5.8-v5
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
2 changes: 1 addition & 1 deletion catalog/raw/mongodb/3.4.17/mongodb-backup-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-mongodb:3.4.17-v10
image: stashed/stash-mongodb:3.4.17-v11
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
2 changes: 1 addition & 1 deletion catalog/raw/mongodb/3.4.17/mongodb-restore-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- --snapshot=${RESTORE_SNAPSHOTS:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-mongodb:3.4.17-v10
image: stashed/stash-mongodb:3.4.17-v11
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
2 changes: 1 addition & 1 deletion catalog/raw/mongodb/3.4.22/mongodb-backup-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ spec:
- --retention-dry-run=${RETENTION_DRY_RUN:=false}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-mongodb:3.4.22-v10
image: stashed/stash-mongodb:3.4.22-v11
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
2 changes: 1 addition & 1 deletion catalog/raw/mongodb/3.4.22/mongodb-restore-function.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
- --snapshot=${RESTORE_SNAPSHOTS:=}
- --output-dir=${outputDir:=}
- --license-apiservice=${LICENSE_APISERVICE:=}
image: stashed/stash-mongodb:3.4.22-v10
image: stashed/stash-mongodb:3.4.22-v11
volumeMounts:
- mountPath: /etc/repository/secret
name: ${secretVolume}
Loading

0 comments on commit a156259

Please sign in to comment.