Skip to content

Commit fbf6dfb

Browse files
authored
Prepare for release 3.6.1-beta.20200826 (#187)
ProductLine: Stash Release: v2020.08.26-rc.0 Release-tracker: stashed/CHANGELOG#4 Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 50d9b51 commit fbf6dfb

38 files changed

+3783
-454
lines changed

charts/stash-mongodb/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-mongodb - MongoDB database plugin for Stash by AppsCode'
33
name: stash-mongodb
4-
version: v2020.07.09-beta.0
5-
appVersion: v2020.07.09-beta.0
4+
version: 3.6.1-beta.20200826
5+
appVersion: 3.6.1-beta.20200826
66
home: https://stash.run
77
icon: https://cdn.appscode.com/images/products/stash/addons/mongodb-stash-addon.png
88
sources:

charts/stash-mongodb/README.md

Lines changed: 18 additions & 18 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-mongodb-3.6.1-beta.20200709 appscode/stash-mongodb -n kube-system --version=3.6.1-beta.20200709
10+
$ helm install stash-mongodb-3.6.1-beta.20200826 appscode/stash-mongodb -n kube-system --version=3.6.1-beta.20200826
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-mongodb-3.6.1-beta.20200709`:
23+
To install the chart with the release name `stash-mongodb-3.6.1-beta.20200826`:
2424

2525
```console
26-
$ helm install stash-mongodb-3.6.1-beta.20200709 appscode/stash-mongodb -n kube-system --version=3.6.1-beta.20200709
26+
$ helm install stash-mongodb-3.6.1-beta.20200826 appscode/stash-mongodb -n kube-system --version=3.6.1-beta.20200826
2727
```
2828

2929
The command deploys necessary `Function` and `Task` definition to backup or restore MongoDB 3.6.13 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-mongodb-3.6.1-beta.20200709`:
35+
To uninstall/delete the `stash-mongodb-3.6.1-beta.20200826`:
3636

3737
```console
38-
$ helm delete stash-mongodb-3.6.1-beta.20200709 -n kube-system
38+
$ helm delete stash-mongodb-3.6.1-beta.20200826 -n kube-system
3939
```
4040

4141
The command removes all the Kubernetes components associated with the chart and deletes the release.
@@ -44,28 +44,28 @@ The command removes all the Kubernetes components associated with the chart and
4444

4545
The following table lists the configurable parameters of the `stash-mongodb` chart and their default values.
4646

47-
| Parameter | Description | Default |
48-
|------------------|-------------------------------------------------------------------------------------------------------------------------------|-----------------|
49-
| nameOverride | Overrides name template | `""` |
50-
| fullnameOverride | Overrides fullname template | `""` |
51-
| image.registry | Docker registry used to pull MongoDB addon image | `stashed` |
52-
| image.repository | Docker image used to backup/restore MongoDB database | `stash-mongodb` |
53-
| image.tag | Tag of the image that is used to backup/restore MongoDB database. This is usually same as the database version it can backup. | `"3.6.13"` |
54-
| backup.args | Arguments to pass to `mongodump` command during backup process | `""` |
55-
| restore.args | Arguments to pass to `mongorestore` command during restore process | `""` |
56-
| maxConcurrency | Maximum concurrency to perform backup or restore tasks | `3` |
57-
| waitTimeout | Number of seconds to wait for the database to be ready before backup/restore process. | `300` |
47+
| Parameter | Description | Default |
48+
|------------------|-------------------------------------------------------------------------------------------------------------------------------|-----------------------|
49+
| nameOverride | Overrides name template | `""` |
50+
| fullnameOverride | Overrides fullname template | `""` |
51+
| image.registry | Docker registry used to pull MongoDB addon image | `stashed` |
52+
| image.repository | Docker image used to backup/restore MongoDB database | `stash-mongodb` |
53+
| image.tag | Tag of the image that is used to backup/restore MongoDB database. This is usually same as the database version it can backup. | `3.6.1-beta.20200826` |
54+
| backup.args | Arguments to pass to `mongodump` command during backup process | `""` |
55+
| restore.args | Arguments to pass to `mongorestore` command during restore process | `""` |
56+
| maxConcurrency | Maximum concurrency to perform backup or restore tasks | `3` |
57+
| waitTimeout | Number of seconds to wait for the database to be ready before backup/restore process. | `300` |
5858

5959

6060
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
6161

6262
```console
63-
$ helm install stash-mongodb-3.6.1-beta.20200709 appscode/stash-mongodb -n kube-system --version=3.6.1-beta.20200709 --set image.registry=stashed
63+
$ helm install stash-mongodb-3.6.1-beta.20200826 appscode/stash-mongodb -n kube-system --version=3.6.1-beta.20200826 --set image.registry=stashed
6464
```
6565

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

6969
```console
70-
$ helm install stash-mongodb-3.6.1-beta.20200709 appscode/stash-mongodb -n kube-system --version=3.6.1-beta.20200709 --values values.yaml
70+
$ helm install stash-mongodb-3.6.1-beta.20200826 appscode/stash-mongodb -n kube-system --version=3.6.1-beta.20200826 --values values.yaml
7171
```

charts/stash-mongodb/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-mongodb
13-
version: 3.6.1-beta.20200709
13+
version: 3.6.1-beta.20200826
1414
values: "-- generate from values file --"
1515
valuesExample: "-- generate from values file --"
1616
prerequisites:
1717
- Kubernetes 1.11+
1818
release:
19-
name: stash-mongodb-3.6.1-beta.20200709
19+
name: stash-mongodb-3.6.1-beta.20200826
2020
namespace: kube-system

charts/stash-mongodb/values.yaml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,22 @@
66
nameOverride: ""
77
# Overrides fullname template
88
fullnameOverride: ""
9-
109
image:
1110
# Docker registry used to pull MongoDB addon image
1211
registry: stashed
1312
# Docker image used to backup/restore MongoDB database
1413
repository: stash-mongodb
1514
# Tag of the image that is used to backup/restore MongoDB database.
1615
# This is usually same as the database version it can backup.
17-
tag: "3.6.13"
18-
16+
tag: 3.6.1-beta.20200826
1917
# optional argument to send mongodump or mongorestore command
2018
backup:
2119
# Arguments to pass to `mongodump` command during backup process
2220
args: ""
2321
restore:
2422
# Arguments to pass to `mongorestore` command during restore process
2523
args: ""
26-
2724
# Maximum concurrency to perform backup or restore tasks
2825
maxConcurrency: 3
29-
3026
# Number of seconds to wait for the database to be ready before backup/restore process.
3127
waitTimeout: 300

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ require (
1616
k8s.io/apimachinery v0.18.3
1717
k8s.io/client-go v12.0.0+incompatible
1818
k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6
19-
kmodules.xyz/client-go v0.0.0-20200714060506-0b57b4060595
19+
kmodules.xyz/client-go v0.0.0-20200818171030-24b2ce405feb
2020
kmodules.xyz/crd-schema-fuzz v0.0.0-20200521005638-2433a187de95
2121
kmodules.xyz/custom-resources v0.0.0-20200604135349-9e9f5c4fdba9
2222
kmodules.xyz/offshoot-api v0.0.0-20200521035628-e135bf07b226
2323
kubedb.dev/apimachinery v0.14.0-alpha.5
2424
sigs.k8s.io/yaml v1.2.0
25-
stash.appscode.dev/apimachinery v0.10.0-beta.1.0.20200717091944-a8f3bb469467
25+
stash.appscode.dev/apimachinery v0.10.0-rc.0
2626
)
2727

2828
replace (

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1257,8 +1257,8 @@ kmodules.xyz/client-go v0.0.0-20200524205059-e986bc44c91b/go.mod h1:sY/eoe4ktxZE
12571257
kmodules.xyz/client-go v0.0.0-20200525012433-99c6914a1eca/go.mod h1:sY/eoe4ktxZEoHpr5NpAQ5s22VSwTE8psJtKVeVgLRY=
12581258
kmodules.xyz/client-go v0.0.0-20200525195850-2fd180961371 h1:PPawDOMyDHGeDPN8j1epNozaIB/Z7MlJsXpwm/r4jgk=
12591259
kmodules.xyz/client-go v0.0.0-20200525195850-2fd180961371/go.mod h1:sY/eoe4ktxZEoHpr5NpAQ5s22VSwTE8psJtKVeVgLRY=
1260-
kmodules.xyz/client-go v0.0.0-20200714060506-0b57b4060595 h1:KgvN4M8VbHU6JV4rgYzsUKYhUtF1uCt//dLOyEdG330=
1261-
kmodules.xyz/client-go v0.0.0-20200714060506-0b57b4060595/go.mod h1:sY/eoe4ktxZEoHpr5NpAQ5s22VSwTE8psJtKVeVgLRY=
1260+
kmodules.xyz/client-go v0.0.0-20200818171030-24b2ce405feb h1:0yIIoTfkhR4JAgx8UyXbP7oAveVAOcf66+D+20Uj/Uc=
1261+
kmodules.xyz/client-go v0.0.0-20200818171030-24b2ce405feb/go.mod h1:sY/eoe4ktxZEoHpr5NpAQ5s22VSwTE8psJtKVeVgLRY=
12621262
kmodules.xyz/constants v0.0.0-20200506032633-a21e58ceec72/go.mod h1:DbiFk1bJ1KEO94t1SlAn7tzc+Zz95rSXgyUKa2nzPmY=
12631263
kmodules.xyz/crd-schema-fuzz v0.0.0-20200521005638-2433a187de95 h1:v0S/+ftzL6Xrs9XevgchAOJyPKlRQXPiZf87xotj3X4=
12641264
kmodules.xyz/crd-schema-fuzz v0.0.0-20200521005638-2433a187de95/go.mod h1:jpu8xFsDKd6kAWUAKk8oTu/GQGBWqhrcaDeOJdaCJnk=
@@ -1307,6 +1307,6 @@ software.sslmate.com/src/go-pkcs12 v0.0.0-20180114231543-2291e8f0f237/go.mod h1:
13071307
sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0=
13081308
stash.appscode.dev/apimachinery v0.10.0-alpha.0 h1:/CBUctjDJyjo9a9lANjAPRq3Fj1KygXddgoJKdGQ0Q8=
13091309
stash.appscode.dev/apimachinery v0.10.0-alpha.0/go.mod h1:su9Q+3/B6+5PdGvVZBIkXoAik6iKKFUcdPNThpZPVV4=
1310-
stash.appscode.dev/apimachinery v0.10.0-beta.1.0.20200717091944-a8f3bb469467 h1:ghoHaD+TRpDGB1sjA6F+4wT4uKNF/hhbulzARzO7AXE=
1311-
stash.appscode.dev/apimachinery v0.10.0-beta.1.0.20200717091944-a8f3bb469467/go.mod h1:lyIgBXoTj0cugPfVQC5IjOsMiQEx0YQuvr3KycGltyU=
1310+
stash.appscode.dev/apimachinery v0.10.0-rc.0 h1:eapfPKJjFFh+YlZtJ2KVdngHG0jvjl/hOBLkj1hHejI=
1311+
stash.appscode.dev/apimachinery v0.10.0-rc.0/go.mod h1:TpdBIAiHCtpkUB13SDUyCZ6y+5wmzXBMAf9e72cSPO4=
13121312
vbom.ml/util v0.0.0-20160121211510-db5cfe13f5cc/go.mod h1:so/NYdZXCz+E3ZpW0uAoCj6uzU2+8OWDFv/HxUSs7kI=

vendor/k8s.io/client-go/metadata/interface.go

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

0 commit comments

Comments
 (0)