Skip to content

Commit e384f2f

Browse files
authored
Prepare for release 13.1.0-v1 (#498)
ProductLine: Stash Release: v2020.12.17 Release-tracker: stashed/CHANGELOG#25 Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent 5725c15 commit e384f2f

File tree

12 files changed

+22
-24
lines changed

12 files changed

+22
-24
lines changed

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

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

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

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

3737
```console
38-
$ helm delete stash-postgres-13.1.0 -n kube-system
38+
$ helm delete stash-postgres-13.1.0-v1 -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-postgres` ch
5050
| fullnameOverride | Overrides fullname template | `""` |
5151
| image.registry | Docker registry used to pull Postgres addon image | `stashed` |
5252
| image.repository | Docker image used to backup/restore PosegreSQL database | `stash-postgres` |
53-
| image.tag | Tag of the image that is used to backup/restore PostgreSQL database. This is usually same as the database version it can backup. | `13.1.0` |
53+
| image.tag | Tag of the image that is used to backup/restore PostgreSQL database. This is usually same as the database version it can backup. | `13.1.0-v1` |
5454
| backup.cmd | Postgres dump command, can either be: pg_dumpall or pg_dump | `"pg_dumpall"` |
5555
| backup.args | Arguments to pass to `backup.cmd` command during backup process | `""` |
5656
| restore.args | Arguments to pass to `psql` command during restore process | `""` |
@@ -60,12 +60,12 @@ The following table lists the configurable parameters of the `stash-postgres` ch
6060
Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example:
6161

6262
```console
63-
$ helm install stash-postgres-13.1.0 appscode/stash-postgres -n kube-system --version=13.1.0 --set image.registry=stashed
63+
$ helm install stash-postgres-13.1.0-v1 appscode/stash-postgres -n kube-system --version=13.1.0-v1 --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-postgres-13.1.0 appscode/stash-postgres -n kube-system --version=13.1.0 --values values.yaml
70+
$ helm install stash-postgres-13.1.0-v1 appscode/stash-postgres -n kube-system --version=13.1.0-v1 --values values.yaml
7171
```

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

charts/stash-postgres/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ image:
1313
repository: stash-postgres
1414
# Tag of the image that is used to backup/restore PostgreSQL database.
1515
# This is usually same as the database version it can backup.
16-
tag: 13.1.0
16+
tag: 13.1.0-v1
1717
backup:
1818
# Postgres dump command, can either be: pg_dumpall or pg_dump
1919
cmd: "pg_dumpall"

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: postgres-backup-13.1.0
9+
name: postgres-backup-13.1.0-v1
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: Postgres # this label is mandatory if you are using KubeDB to deploy the database.
88
spec:
99
task:
10-
name: postgres-restore-13.1.0
10+
name: postgres-restore-13.1.0-v1
1111
repository:
1212
name: gcs-repo
1313
target:

go.mod

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

2929
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
@@ -964,8 +964,6 @@ kmodules.xyz/client-go v0.0.0-20201208053851-a1d7be95e006/go.mod h1:WXDwZBmvrcLg
964964
kmodules.xyz/constants v0.0.0-20200923054614-6b87dbbae4d6/go.mod h1:DbiFk1bJ1KEO94t1SlAn7tzc+Zz95rSXgyUKa2nzPmY=
965965
kmodules.xyz/crd-schema-fuzz v0.0.0-20200922204806-c1426cd7fcf4 h1:NWWv+Qju8xzHZT9hIk1+BbgQtIytNOoCU4g4vqUmh3M=
966966
kmodules.xyz/crd-schema-fuzz v0.0.0-20200922204806-c1426cd7fcf4/go.mod h1:WrO3fryNyFCgqqyWnwI89lnzWA7kN072Ehya7ELGfzE=
967-
kmodules.xyz/custom-resources v0.0.0-20201105075444-3c6af51b4f79 h1:BKPPUY/w0ac4R6g172zrejs+MLae2CHGqHCFpzrbRLc=
968-
kmodules.xyz/custom-resources v0.0.0-20201105075444-3c6af51b4f79/go.mod h1:/r3/eJ3LIfwGyBEVaobqUZRZGh7GJv5RJojj/bdD14Q=
969967
kmodules.xyz/custom-resources v0.0.0-20201124062543-bd8d35c21b0c h1:OIAnTI2yik4i1DSe23kO+89RMw/Eu6WUG/IQ++ivYNo=
970968
kmodules.xyz/custom-resources v0.0.0-20201124062543-bd8d35c21b0c/go.mod h1:/r3/eJ3LIfwGyBEVaobqUZRZGh7GJv5RJojj/bdD14Q=
971969
kmodules.xyz/objectstore-api v0.0.0-20201105133858-cbb2af88d50a h1:FJ8Fwn+BCalLuzkhjmyDf7Fuh19LBIEf/Fx/+xaYDB0=
@@ -994,6 +992,6 @@ sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
994992
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
995993
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
996994
sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0=
997-
stash.appscode.dev/apimachinery v0.11.7 h1:NgAES2E1YWPAKJE7agHPOC9jGV2rFB/zW3XjRcSlyUo=
998-
stash.appscode.dev/apimachinery v0.11.7/go.mod h1:QnuI/VQTYxiT5ikxHqwOmqO96emPJPykbxfEp7pgjhk=
995+
stash.appscode.dev/apimachinery v0.11.8 h1:Po7gDpZqd+iQ8DR3zu1iJgIPQiFODPjiA6NIKhO2+7s=
996+
stash.appscode.dev/apimachinery v0.11.8/go.mod h1:s91NxOW9K/CLv9Cl9XVCzBLgdKqVcUOyc9VrYg0NNB0=
999997
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.7
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)