Skip to content

Commit a323265

Browse files
authored
Prepare for release 5.7.25-v6 (#286)
ProductLine: Stash Release: v2021.01.21 Release-tracker: stashed/CHANGELOG#27 Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 28fc525 commit a323265

File tree

9 files changed

+19
-21
lines changed

9 files changed

+19
-21
lines changed

charts/stash-mysql/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
description: 'stash-mysql - MySQL database plugin for Stash by AppsCode'
33
name: stash-mysql
4-
version: 5.7.25-v5
5-
appVersion: 5.7.25-v5
4+
version: 5.7.25-v6
5+
appVersion: 5.7.25-v6
66
home: https://stash.run
77
icon: https://cdn.appscode.com/images/products/stash/addons/mysql-stash-addon.png
88
sources:

charts/stash-mysql/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```console
88
$ helm repo add appscode https://charts.appscode.com/stable/
99
$ helm repo update
10-
$ helm install stash-mysql-5.7.25-v5 appscode/stash-mysql -n kube-system --version=5.7.25-v5
10+
$ helm install stash-mysql-5.7.25-v6 appscode/stash-mysql -n kube-system --version=5.7.25-v6
1111
```
1212

1313
## Introduction
@@ -20,10 +20,10 @@ This chart deploys necessary `Function` and `Task` definition to backup or resto
2020

2121
## Installing the Chart
2222

23-
To install the chart with the release name `stash-mysql-5.7.25-v5`:
23+
To install the chart with the release name `stash-mysql-5.7.25-v6`:
2424

2525
```console
26-
$ helm install stash-mysql-5.7.25-v5 appscode/stash-mysql -n kube-system --version=5.7.25-v5
26+
$ helm install stash-mysql-5.7.25-v6 appscode/stash-mysql -n kube-system --version=5.7.25-v6
2727
```
2828

2929
The command deploys necessary `Function` and `Task` definition to backup or restore MySQL 5.7.25 using Stash on the Kubernetes cluster in the default configuration. The [configuration](#configuration) section lists the parameters that can be configured during installation.
@@ -32,10 +32,10 @@ The command deploys necessary `Function` and `Task` definition to backup or rest
3232
3333
## Uninstalling the Chart
3434

35-
To uninstall/delete the `stash-mysql-5.7.25-v5`:
35+
To uninstall/delete the `stash-mysql-5.7.25-v6`:
3636

3737
```console
38-
$ helm delete stash-mysql-5.7.25-v5 -n kube-system
38+
$ helm delete stash-mysql-5.7.25-v6 -n kube-system
3939
```
4040

4141
The command removes all the Kubernetes components associated with the chart and deletes the release.
@@ -50,7 +50,7 @@ The following table lists the configurable parameters of the `stash-mysql` chart
5050
| fullnameOverride | Overrides fullname template | `""` |
5151
| image.registry | Docker registry used to pull MySQL addon image | `stashed` |
5252
| image.repository | Docker image used to backup/restore MySQL database | `stash-mysql` |
53-
| image.tag | Tag of the image that is used to backup/restore MySQL database. This is usually same as the database version it can backup. | `5.7.25-v5` |
53+
| image.tag | Tag of the image that is used to backup/restore MySQL database. This is usually same as the database version it can backup. | `5.7.25-v6` |
5454
| backup.args | Arguments to pass to `mysqldump` command during bakcup process | `"--all-databases"` |
5555
| restore.args | Arguments to pass to `mysql` command during restore process | `""` |
5656
| waitTimeout | Number of seconds to wait for the database to be ready before backup/restore process. | `300` |
@@ -59,12 +59,12 @@ The following table lists the configurable parameters of the `stash-mysql` chart
5959
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
6060

6161
```console
62-
$ helm install stash-mysql-5.7.25-v5 appscode/stash-mysql -n kube-system --version=5.7.25-v5 --set image.registry=stashed
62+
$ helm install stash-mysql-5.7.25-v6 appscode/stash-mysql -n kube-system --version=5.7.25-v6 --set image.registry=stashed
6363
```
6464

6565
Alternatively, a YAML file that specifies the values for the parameters can be provided while
6666
installing the chart. For example:
6767

6868
```console
69-
$ helm install stash-mysql-5.7.25-v5 appscode/stash-mysql -n kube-system --version=5.7.25-v5 --values values.yaml
69+
$ helm install stash-mysql-5.7.25-v6 appscode/stash-mysql -n kube-system --version=5.7.25-v6 --values values.yaml
7070
```

charts/stash-mysql/doc.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ repository:
1010
name: appscode
1111
chart:
1212
name: stash-mysql
13-
version: 5.7.25-v5
13+
version: 5.7.25-v6
1414
values: "-- generate from values file --"
1515
valuesExample: "-- generate from values file --"
1616
prerequisites:
1717
- Kubernetes 1.11+
1818
release:
19-
name: stash-mysql-5.7.25-v5
19+
name: stash-mysql-5.7.25-v6
2020
namespace: kube-system

charts/stash-mysql/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ image:
1313
repository: stash-mysql
1414
# Tag of the image that is used to backup/restore MySQL database.
1515
# This is usually same as the database version it can backup.
16-
tag: 5.7.25-v5
16+
tag: 5.7.25-v6
1717
# optional argument to send mysqldump or mysql command
1818
backup:
1919
# Arguments to pass to `mysqldump` command during bakcup process

docs/examples/backup/backupconfiguration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
spec:
77
schedule: "*/5 * * * *"
88
task:
9-
name: mysql-backup-5.7.25-v5
9+
name: mysql-backup-5.7.25-v6
1010
repository:
1111
name: gcs-repo
1212
target:

docs/examples/restore/restoresession.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
kubedb.com/kind: MySQL # this label is mandatory if you are using KubeDB to deploy the database.
88
spec:
99
task:
10-
name: mysql-restore-5.7.25-v5
10+
name: mysql-restore-5.7.25-v6
1111
repository:
1212
name: gcs-repo
1313
target:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ require (
1515
kmodules.xyz/custom-resources v0.0.0-20201124062543-bd8d35c21b0c
1616
kmodules.xyz/offshoot-api v0.0.0-20201105074700-8675f5f686f2
1717
kmodules.xyz/schema-checker v0.1.0
18-
stash.appscode.dev/apimachinery v0.11.8
18+
stash.appscode.dev/apimachinery v0.11.9
1919
)
2020

2121
replace bitbucket.org/ww/goautoneg => gomodules.xyz/goautoneg v0.0.0-20120707110453-a547fc61f48d

go.sum

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -985,8 +985,6 @@ k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89 h1:d4vVOjXm687F1iLSP2q3lyPPuyvTU
985985
k8s.io/utils v0.0.0-20200324210504-a9aa75ae1b89/go.mod h1:sZAwmy6armz5eXlNoLmJcl4F1QuKu7sr+mFQ0byX7Ew=
986986
kmodules.xyz/client-go v0.0.0-20201105071625-0b277310b9b8 h1:zs2+yI/Ola5HjdtfP29XD76Bx5BO4WchC2uN9lkhxQM=
987987
kmodules.xyz/client-go v0.0.0-20201105071625-0b277310b9b8/go.mod h1:WXDwZBmvrcLgGcuO9iZpI9jcfPuDFfWbxA4EnhAFtGw=
988-
kmodules.xyz/client-go v0.0.0-20201208053851-a1d7be95e006 h1:gNrNTwi0jViRqdszsb0W5CQF+ANNVFlvh/LO0A3R7dM=
989-
kmodules.xyz/client-go v0.0.0-20201208053851-a1d7be95e006/go.mod h1:WXDwZBmvrcLgGcuO9iZpI9jcfPuDFfWbxA4EnhAFtGw=
990988
kmodules.xyz/client-go v0.0.0-20210108092221-c3812eb92bd0 h1:VHpZt3cG/yY6UrA3vjoUc4pJtc/jVbjt2A3OPuMXBOQ=
991989
kmodules.xyz/client-go v0.0.0-20210108092221-c3812eb92bd0/go.mod h1:WXDwZBmvrcLgGcuO9iZpI9jcfPuDFfWbxA4EnhAFtGw=
992990
kmodules.xyz/constants v0.0.0-20200923054614-6b87dbbae4d6/go.mod h1:DbiFk1bJ1KEO94t1SlAn7tzc+Zz95rSXgyUKa2nzPmY=
@@ -1022,6 +1020,6 @@ sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
10221020
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
10231021
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
10241022
sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0=
1025-
stash.appscode.dev/apimachinery v0.11.8 h1:Po7gDpZqd+iQ8DR3zu1iJgIPQiFODPjiA6NIKhO2+7s=
1026-
stash.appscode.dev/apimachinery v0.11.8/go.mod h1:s91NxOW9K/CLv9Cl9XVCzBLgdKqVcUOyc9VrYg0NNB0=
1023+
stash.appscode.dev/apimachinery v0.11.9 h1:rTGXRrwxRSuM3bwA8W1x2PuXPQtmwUA3PL7wO5iVH5k=
1024+
stash.appscode.dev/apimachinery v0.11.9/go.mod h1:Ixnv6Oq7O6XgofgEDrbQhvFCZu2t4XDx16dPgMsxnUM=
10271025
vbom.ml/util v0.0.0-20160121211510-db5cfe13f5cc/go.mod h1:so/NYdZXCz+E3ZpW0uAoCj6uzU2+8OWDFv/HxUSs7kI=

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ kmodules.xyz/schema-checker
475475
sigs.k8s.io/structured-merge-diff/v3/value
476476
# sigs.k8s.io/yaml v1.2.0
477477
sigs.k8s.io/yaml
478-
# stash.appscode.dev/apimachinery v0.11.8
478+
# stash.appscode.dev/apimachinery v0.11.9
479479
stash.appscode.dev/apimachinery/apis
480480
stash.appscode.dev/apimachinery/apis/repositories
481481
stash.appscode.dev/apimachinery/apis/repositories/v1alpha1

0 commit comments

Comments
 (0)