Skip to content

Commit 833905a

Browse files
authored
Prepare for release 4.1.7-v2 (#324)
ProductLine: Stash Release: v2020.09.16 Release-tracker: stashed/CHANGELOG#8 Signed-off-by: 1gtm <1gtm@appscode.com> Signed-off-by: Tamal Saha <tamal@appscode.com>
1 parent 2e06c98 commit 833905a

File tree

277 files changed

+46317
-674
lines changed

Some content is hidden

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

277 files changed

+46317
-674
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: 4.1.7-v1
5-
appVersion: 4.1.7-v1
4+
version: 4.1.7-v2
5+
appVersion: 4.1.7-v2
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: 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-mongodb-4.1.7-v1 appscode/stash-mongodb -n kube-system --version=4.1.7-v1
10+
$ helm install stash-mongodb-4.1.7-v2 appscode/stash-mongodb -n kube-system --version=4.1.7-v2
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-4.1.7-v1`:
23+
To install the chart with the release name `stash-mongodb-4.1.7-v2`:
2424

2525
```console
26-
$ helm install stash-mongodb-4.1.7-v1 appscode/stash-mongodb -n kube-system --version=4.1.7-v1
26+
$ helm install stash-mongodb-4.1.7-v2 appscode/stash-mongodb -n kube-system --version=4.1.7-v2
2727
```
2828

2929
The command deploys necessary `Function` and `Task` definition to backup or restore MongoDB 4.1.7 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-4.1.7-v1`:
35+
To uninstall/delete the `stash-mongodb-4.1.7-v2`:
3636

3737
```console
38-
$ helm delete stash-mongodb-4.1.7-v1 -n kube-system
38+
$ helm delete stash-mongodb-4.1.7-v2 -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-mongodb` cha
5050
| fullnameOverride | Overrides fullname template | `""` |
5151
| image.registry | Docker registry used to pull MongoDB addon image | `stashed` |
5252
| 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. | `4.1.7-v1` |
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. | `4.1.7-v2` |
5454
| backup.args | Arguments to pass to `mongodump` command during backup process | `""` |
5555
| restore.args | Arguments to pass to `mongorestore` command during restore process | `""` |
5656
| maxConcurrency | Maximum concurrency to perform backup or restore tasks | `3` |
@@ -60,12 +60,12 @@ The following table lists the configurable parameters of the `stash-mongodb` cha
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-4.1.7-v1 appscode/stash-mongodb -n kube-system --version=4.1.7-v1 --set image.registry=stashed
63+
$ helm install stash-mongodb-4.1.7-v2 appscode/stash-mongodb -n kube-system --version=4.1.7-v2 --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-4.1.7-v1 appscode/stash-mongodb -n kube-system --version=4.1.7-v1 --values values.yaml
70+
$ helm install stash-mongodb-4.1.7-v2 appscode/stash-mongodb -n kube-system --version=4.1.7-v2 --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: 4.1.7-v1
13+
version: 4.1.7-v2
1414
values: "-- generate from values file --"
1515
valuesExample: "-- generate from values file --"
1616
prerequisites:
1717
- Kubernetes 1.11+
1818
release:
19-
name: stash-mongodb-4.1.7-v1
19+
name: stash-mongodb-4.1.7-v2
2020
namespace: kube-system

charts/stash-mongodb/values.yaml

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

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.12
55
require (
66
github.com/appscode/go v0.0.0-20200323182826-54e98e09185a
77
github.com/codeskyblue/go-sh v0.0.0-20190412065543-76bd3d59ff27
8-
github.com/go-openapi/spec v0.19.3
8+
github.com/go-openapi/spec v0.19.7
99
github.com/gogo/protobuf v1.3.1
1010
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
1111
github.com/google/gofuzz v1.1.0
@@ -24,7 +24,7 @@ require (
2424
kmodules.xyz/offshoot-api v0.0.0-20200521035628-e135bf07b226
2525
kubedb.dev/apimachinery v0.14.0-beta.2
2626
sigs.k8s.io/yaml v1.2.0
27-
stash.appscode.dev/apimachinery v0.10.1-0.20200914045248-546ceea96940
27+
stash.appscode.dev/apimachinery v0.11.0
2828
)
2929

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

0 commit comments

Comments
 (0)