Skip to content

Commit 6c59e1e

Browse files
authored
Prepare for release 13.1.0-v2 (#719)
ProductLine: Stash Release: v2021.03.08 Release-tracker: stashed/CHANGELOG#29 Signed-off-by: 1gtm <1gtm@appscode.com>
1 parent be6c043 commit 6c59e1e

29 files changed

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

2525
```console
26-
$ helm install stash-postgres-13.1.0-v1 appscode/stash-postgres -n kube-system --version=13.1.0-v1
26+
$ helm install stash-postgres-13.1.0-v2 appscode/stash-postgres -n kube-system --version=13.1.0-v2
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-v1`:
35+
To uninstall/delete the `stash-postgres-13.1.0-v2`:
3636

3737
```console
38-
$ helm delete stash-postgres-13.1.0-v1 -n kube-system
38+
$ helm delete stash-postgres-13.1.0-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-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-v1` |
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-v2` |
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-v1 appscode/stash-postgres -n kube-system --version=13.1.0-v1 --set image.registry=stashed
63+
$ helm install stash-postgres-13.1.0-v2 appscode/stash-postgres -n kube-system --version=13.1.0-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-postgres-13.1.0-v1 appscode/stash-postgres -n kube-system --version=13.1.0-v1 --values values.yaml
70+
$ helm install stash-postgres-13.1.0-v2 appscode/stash-postgres -n kube-system --version=13.1.0-v2 --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-v1
13+
version: 13.1.0-v2
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-v1
19+
name: stash-postgres-13.1.0-v2
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-v1
16+
tag: 13.1.0-v2
1717
backup:
1818
# Postgres dump command, can either be: pg_dumpall or pg_dump
1919
cmd: "pg_dumpall"

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-20210222235834-b3f8dc56b6a3
1616
kmodules.xyz/offshoot-api v0.0.0-20210220080828-fae1f6c66a89
1717
kmodules.xyz/schema-checker v0.1.2
18-
stash.appscode.dev/apimachinery v0.11.10-0.20210219134546-33840ed82608
18+
stash.appscode.dev/apimachinery v0.11.10
1919
)
2020

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

go.sum

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ kmodules.xyz/client-go v0.0.0-20210220080427-fd7308e30bb4 h1:kPPcEpeXNkb8Nnce7gD
878878
kmodules.xyz/client-go v0.0.0-20210220080427-fd7308e30bb4/go.mod h1:GdX1CHOpjL4F8P9O/7dE9m0fIOs05BNHKVT+kM51rk8=
879879
kmodules.xyz/constants v0.0.0-20200923054614-6b87dbbae4d6/go.mod h1:DbiFk1bJ1KEO94t1SlAn7tzc+Zz95rSXgyUKa2nzPmY=
880880
kmodules.xyz/crd-schema-fuzz v0.0.0-20200922204806-c1426cd7fcf4/go.mod h1:WrO3fryNyFCgqqyWnwI89lnzWA7kN072Ehya7ELGfzE=
881-
kmodules.xyz/custom-resources v0.0.0-20210218144958-579bf8307d65/go.mod h1:/r3/eJ3LIfwGyBEVaobqUZRZGh7GJv5RJojj/bdD14Q=
881+
kmodules.xyz/custom-resources v0.0.0-20210222100152-7426e3678989/go.mod h1:/r3/eJ3LIfwGyBEVaobqUZRZGh7GJv5RJojj/bdD14Q=
882882
kmodules.xyz/custom-resources v0.0.0-20210222235834-b3f8dc56b6a3 h1:TVUKrj37RHx895lCF1or47q7zrfZiPD9Hvn/9+6nP8E=
883883
kmodules.xyz/custom-resources v0.0.0-20210222235834-b3f8dc56b6a3/go.mod h1:/r3/eJ3LIfwGyBEVaobqUZRZGh7GJv5RJojj/bdD14Q=
884884
kmodules.xyz/objectstore-api v0.0.0-20210218144135-bfabb80e0362 h1:oG5nkEc8HfcR6Q3rAPJxP5qWEEv5ZJaUaN/qSZw/LF4=
@@ -909,6 +909,6 @@ sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
909909
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
910910
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
911911
sourcegraph.com/sqs/pbtypes v0.0.0-20180604144634-d3ebe8f20ae4/go.mod h1:ketZ/q3QxT9HOBeFhu6RdvsftgpsbFHBF5Cas6cDKZ0=
912-
stash.appscode.dev/apimachinery v0.11.10-0.20210219134546-33840ed82608 h1:Tdpj4L4xsdAp+stNBfjhQZm2OkQLR3kph1FD/nC67AI=
913-
stash.appscode.dev/apimachinery v0.11.10-0.20210219134546-33840ed82608/go.mod h1:A3+TBQdoqO3hXp+9F8RS6dlsEGpzYDNQaCUgLUqTBo8=
912+
stash.appscode.dev/apimachinery v0.11.10 h1:Qeyagj207Xgl3U1YbBTSzdIrY27RK7aunNbDXC6HmPI=
913+
stash.appscode.dev/apimachinery v0.11.10/go.mod h1:/mCvRYT6pzejllri8OMBRHrpYUSD9fMB7GlgZvCRp6Y=
914914
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
@@ -473,7 +473,7 @@ kmodules.xyz/schema-checker
473473
sigs.k8s.io/structured-merge-diff/v3/value
474474
# sigs.k8s.io/yaml v1.2.0
475475
sigs.k8s.io/yaml
476-
# stash.appscode.dev/apimachinery v0.11.10-0.20210219134546-33840ed82608
476+
# stash.appscode.dev/apimachinery v0.11.10
477477
stash.appscode.dev/apimachinery/apis
478478
stash.appscode.dev/apimachinery/apis/repositories
479479
stash.appscode.dev/apimachinery/apis/repositories/v1alpha1

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ limitations under the License.
1818
// +k8s:conversion-gen=stash.appscode.dev/apimachinery/apis/repositories
1919
// +k8s:openapi-gen=true
2020
// +k8s:defaulter-gen=TypeMeta
21-
// +kubebuilder:skip
2221

2322
// Package v1alpha1 is the v1alpha1 version of the API.
2423
// +groupName=repositories.stash.appscode.com

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

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

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

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,6 @@
11
/*
22
Copyright AppsCode Inc. and Contributors
33
4-
Licensed under the Apache License, Version 2.0 (the "License");
5-
you may not use this file except in compliance with the License.
6-
You may obtain a copy of the License at
7-
8-
http://www.apache.org/licenses/LICENSE-2.0
9-
10-
Unless required by applicable law or agreed to in writing, software
11-
distributed under the License is distributed on an "AS IS" BASIS,
12-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13-
See the License for the specific language governing permissions and
14-
limitations under the License.
15-
*/
16-
/*
17-
Copyright 2016 The Kubernetes Authors.
18-
194
Licensed under the Apache License, Version 2.0 (the "License");
205
you may not use this file except in compliance with the License.
216
You may obtain a copy of the License at

0 commit comments

Comments
 (0)