Skip to content

Commit 8959fd4

Browse files
authored
Prepare for release 6.8.0-v5 (#503)
ProductLine: Stash Release: v2020.12.17 Release-tracker: stashed/CHANGELOG#25 Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 6772e20 commit 8959fd4

File tree

16 files changed

+30
-30
lines changed

16 files changed

+30
-30
lines changed

charts/stash-elasticsearch/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-elasticsearch - Elasticsearch database plugin for Stash by AppsCode'
33
name: stash-elasticsearch
4-
version: 6.8.0-v4
5-
appVersion: 6.8.0-v4
4+
version: 6.8.0-v5
5+
appVersion: 6.8.0-v5
66
home: https://stash.run
77
icon: https://cdn.appscode.com/images/products/stash/addons/elasticsearch-stash-addon.png
88
sources:

charts/stash-elasticsearch/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-elasticsearch-6.8.0-v4 appscode/stash-elasticsearch -n kube-system --version=6.8.0-v4
10+
$ helm install stash-elasticsearch-6.8.0-v5 appscode/stash-elasticsearch -n kube-system --version=6.8.0-v5
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-elasticsearch-6.8.0-v4`:
23+
To install the chart with the release name `stash-elasticsearch-6.8.0-v5`:
2424

2525
```console
26-
$ helm install stash-elasticsearch-6.8.0-v4 appscode/stash-elasticsearch -n kube-system --version=6.8.0-v4
26+
$ helm install stash-elasticsearch-6.8.0-v5 appscode/stash-elasticsearch -n kube-system --version=6.8.0-v5
2727
```
2828

2929
The command deploys necessary `Function` and `Task` definition to backup or restore Elasticsearch 6.8.0 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-elasticsearch-6.8.0-v4`:
35+
To uninstall/delete the `stash-elasticsearch-6.8.0-v5`:
3636

3737
```console
38-
$ helm delete stash-elasticsearch-6.8.0-v4 -n kube-system
38+
$ helm delete stash-elasticsearch-6.8.0-v5 -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-elasticsearc
5050
| fullnameOverride | Overrides fullname template | `""` |
5151
| image.registry | Docker registry used to pull Elasticsearch addon image | `stashed` |
5252
| image.repository | Docker image used to backup/restore Elasticsearch database | `stash-elasticsearch` |
53-
| image.tag | Tag of the image that is used to backup/restore Elasticsearch database. This is usually same as the database version it can backup. | `6.8.0-v4` |
53+
| image.tag | Tag of the image that is used to backup/restore Elasticsearch database. This is usually same as the database version it can backup. | `6.8.0-v5` |
5454
| backup.args | Arguments to pass to `multielasticdump` command during backup process | `""` |
5555
| restore.args | Arguments to pass to `multielasticdump` 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-elasticsearc
5959
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
6060

6161
```console
62-
$ helm install stash-elasticsearch-6.8.0-v4 appscode/stash-elasticsearch -n kube-system --version=6.8.0-v4 --set image.registry=stashed
62+
$ helm install stash-elasticsearch-6.8.0-v5 appscode/stash-elasticsearch -n kube-system --version=6.8.0-v5 --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-elasticsearch-6.8.0-v4 appscode/stash-elasticsearch -n kube-system --version=6.8.0-v4 --values values.yaml
69+
$ helm install stash-elasticsearch-6.8.0-v5 appscode/stash-elasticsearch -n kube-system --version=6.8.0-v5 --values values.yaml
7070
```

charts/stash-elasticsearch/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-elasticsearch
13-
version: 6.8.0-v4
13+
version: 6.8.0-v5
1414
values: "-- generate from values file --"
1515
valuesExample: "-- generate from values file --"
1616
prerequisites:
1717
- Kubernetes 1.11+
1818
release:
19-
name: stash-elasticsearch-6.8.0-v4
19+
name: stash-elasticsearch-6.8.0-v5
2020
namespace: kube-system

charts/stash-elasticsearch/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ image:
1313
repository: stash-elasticsearch
1414
# Tag of the image that is used to backup/restore Elasticsearch database.
1515
# This is usually same as the database version it can backup.
16-
tag: 6.8.0-v4
16+
tag: 6.8.0-v5
1717
# optional argument to send multielasticdump
1818
backup:
1919
# Arguments to pass to `multielasticdump` command during backup 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: elasticsearch-backup-6.8.0-v4
9+
name: elasticsearch-backup-6.8.0-v5
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: Elasticsearch # this label is mandatory if you are using KubeDB to deploy the database. Otherwise, Elasticsearch crd will be stuck in `Initializing` phase.
88
spec:
99
task:
10-
name: elasticsearch-restore-6.8.0-v4
10+
name: elasticsearch-restore-6.8.0-v5
1111
repository:
1212
name: gcs-repo
1313
target:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ require (
2222
kmodules.xyz/custom-resources v0.0.0-20201124062543-bd8d35c21b0c
2323
kmodules.xyz/offshoot-api v0.0.0-20201105074700-8675f5f686f2
2424
sigs.k8s.io/yaml v1.2.0
25-
stash.appscode.dev/apimachinery v0.11.6
25+
stash.appscode.dev/apimachinery v0.11.8
2626
)
2727

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

go.sum

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,6 @@ golang.org/x/net v0.0.0-20191126235420-ef20fe5d7933/go.mod h1:z5CRVTTTmAJ677TzLL
745745
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
746746
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e h1:3G+cUijn7XD+S4eJFddp53Pv7+slrESplyjG25HgL+k=
747747
golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
748-
golang.org/x/net v0.0.0-20200602114024-627f9648deb9/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
749748
golang.org/x/net v0.0.0-20200625001655-4c5254603344 h1:vGXIOMxbNfDTk/aXCmfdLgkrSV+Z2tcbze+pEc3v5W4=
750749
golang.org/x/net v0.0.0-20200625001655-4c5254603344/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
751750
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
@@ -978,8 +977,6 @@ kmodules.xyz/client-go v0.0.0-20201208053851-a1d7be95e006/go.mod h1:WXDwZBmvrcLg
978977
kmodules.xyz/constants v0.0.0-20200923054614-6b87dbbae4d6/go.mod h1:DbiFk1bJ1KEO94t1SlAn7tzc+Zz95rSXgyUKa2nzPmY=
979978
kmodules.xyz/crd-schema-fuzz v0.0.0-20200922204806-c1426cd7fcf4 h1:NWWv+Qju8xzHZT9hIk1+BbgQtIytNOoCU4g4vqUmh3M=
980979
kmodules.xyz/crd-schema-fuzz v0.0.0-20200922204806-c1426cd7fcf4/go.mod h1:WrO3fryNyFCgqqyWnwI89lnzWA7kN072Ehya7ELGfzE=
981-
kmodules.xyz/custom-resources v0.0.0-20201105075444-3c6af51b4f79 h1:BKPPUY/w0ac4R6g172zrejs+MLae2CHGqHCFpzrbRLc=
982-
kmodules.xyz/custom-resources v0.0.0-20201105075444-3c6af51b4f79/go.mod h1:/r3/eJ3LIfwGyBEVaobqUZRZGh7GJv5RJojj/bdD14Q=
983980
kmodules.xyz/custom-resources v0.0.0-20201124062543-bd8d35c21b0c h1:OIAnTI2yik4i1DSe23kO+89RMw/Eu6WUG/IQ++ivYNo=
984981
kmodules.xyz/custom-resources v0.0.0-20201124062543-bd8d35c21b0c/go.mod h1:/r3/eJ3LIfwGyBEVaobqUZRZGh7GJv5RJojj/bdD14Q=
985982
kmodules.xyz/objectstore-api v0.0.0-20201105133858-cbb2af88d50a h1:FJ8Fwn+BCalLuzkhjmyDf7Fuh19LBIEf/Fx/+xaYDB0=
@@ -1009,6 +1006,6 @@ sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
10091006
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
10101007
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
10111008
sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0=
1012-
stash.appscode.dev/apimachinery v0.11.6 h1:6JPVYugF6YdeSuLtFqeXTyi6k04owD6E6PxDTBpRsn4=
1013-
stash.appscode.dev/apimachinery v0.11.6/go.mod h1:JQtqMYDOMkcxmcsUnOiRhi/BIvFWlceAIcauBw1a48M=
1009+
stash.appscode.dev/apimachinery v0.11.8 h1:Po7gDpZqd+iQ8DR3zu1iJgIPQiFODPjiA6NIKhO2+7s=
1010+
stash.appscode.dev/apimachinery v0.11.8/go.mod h1:s91NxOW9K/CLv9Cl9XVCzBLgdKqVcUOyc9VrYg0NNB0=
10141011
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
@@ -885,7 +885,7 @@ sigs.k8s.io/structured-merge-diff/v3/typed
885885
sigs.k8s.io/structured-merge-diff/v3/value
886886
# sigs.k8s.io/yaml v1.2.0
887887
sigs.k8s.io/yaml
888-
# stash.appscode.dev/apimachinery v0.11.6
888+
# stash.appscode.dev/apimachinery v0.11.8
889889
stash.appscode.dev/apimachinery/apis
890890
stash.appscode.dev/apimachinery/apis/repositories
891891
stash.appscode.dev/apimachinery/apis/repositories/v1alpha1

vendor/stash.appscode.dev/apimachinery/apis/repositories/v1alpha1/openapi_generated.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)