From 4decd7528ca19737c9fff3247ada0c4c9098c030 Mon Sep 17 00:00:00 2001 From: lgtm <1gtm@users.noreply.github.com> Date: Tue, 17 Nov 2020 10:15:32 -0800 Subject: [PATCH] Prepare for release 10.14.0-v3 (#457) ProductLine: Stash Release: v2020.11.17 Release-tracker: https://github.com/stashed/CHANGELOG/pull/24 Signed-off-by: 1gtm <1gtm@appscode.com> --- charts/stash-postgres/Chart.yaml | 4 ++-- charts/stash-postgres/README.md | 16 ++++++++-------- charts/stash-postgres/doc.yaml | 4 ++-- charts/stash-postgres/values.yaml | 2 +- docs/examples/backup/backupconfiguration.yaml | 2 +- docs/examples/restore/restoresession.yaml | 2 +- 6 files changed, 15 insertions(+), 15 deletions(-) diff --git a/charts/stash-postgres/Chart.yaml b/charts/stash-postgres/Chart.yaml index 61d7d84c1..40a64a1c5 100644 --- a/charts/stash-postgres/Chart.yaml +++ b/charts/stash-postgres/Chart.yaml @@ -1,8 +1,8 @@ apiVersion: v1 description: 'stash-postgres - PostgreSQL database plugin for Stash by AppsCode' name: stash-postgres -version: 10.14.0-v2 -appVersion: 10.14.0-v2 +version: 10.14.0-v3 +appVersion: 10.14.0-v3 home: https://stash.run icon: https://cdn.appscode.com/images/products/stash/addons/postgres-stash-addon.png sources: diff --git a/charts/stash-postgres/README.md b/charts/stash-postgres/README.md index 825c4a8dc..9bfa0d672 100644 --- a/charts/stash-postgres/README.md +++ b/charts/stash-postgres/README.md @@ -7,7 +7,7 @@ ```console $ helm repo add appscode https://charts.appscode.com/stable/ $ helm repo update -$ helm install stash-postgres-10.14.0-v2 appscode/stash-postgres -n kube-system --version=10.14.0-v2 +$ helm install stash-postgres-10.14.0-v3 appscode/stash-postgres -n kube-system --version=10.14.0-v3 ``` ## Introduction @@ -20,10 +20,10 @@ This chart deploys necessary `Function` and `Task` definition to backup or resto ## Installing the Chart -To install the chart with the release name `stash-postgres-10.14.0-v2`: +To install the chart with the release name `stash-postgres-10.14.0-v3`: ```console -$ helm install stash-postgres-10.14.0-v2 appscode/stash-postgres -n kube-system --version=10.14.0-v2 +$ helm install stash-postgres-10.14.0-v3 appscode/stash-postgres -n kube-system --version=10.14.0-v3 ``` The command deploys necessary `Function` and `Task` definition to backup or restore PostgreSQL 10.6 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 ## Uninstalling the Chart -To uninstall/delete the `stash-postgres-10.14.0-v2`: +To uninstall/delete the `stash-postgres-10.14.0-v3`: ```console -$ helm delete stash-postgres-10.14.0-v2 -n kube-system +$ helm delete stash-postgres-10.14.0-v3 -n kube-system ``` 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 | fullnameOverride | Overrides fullname template | `""` | | image.registry | Docker registry used to pull Postgres addon image | `stashed` | | image.repository | Docker image used to backup/restore PosegreSQL database | `stash-postgres` | -| 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. | `10.14.0-v2` | +| 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. | `10.14.0-v3` | | backup.cmd | Postgres dump command, can either be: pg_dumpall or pg_dump | `"pg_dumpall"` | | backup.args | Arguments to pass to `backup.cmd` command during backup process | `""` | | 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 Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example: ```console -$ helm install stash-postgres-10.14.0-v2 appscode/stash-postgres -n kube-system --version=10.14.0-v2 --set image.registry=stashed +$ helm install stash-postgres-10.14.0-v3 appscode/stash-postgres -n kube-system --version=10.14.0-v3 --set image.registry=stashed ``` Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example: ```console -$ helm install stash-postgres-10.14.0-v2 appscode/stash-postgres -n kube-system --version=10.14.0-v2 --values values.yaml +$ helm install stash-postgres-10.14.0-v3 appscode/stash-postgres -n kube-system --version=10.14.0-v3 --values values.yaml ``` diff --git a/charts/stash-postgres/doc.yaml b/charts/stash-postgres/doc.yaml index 1ebf1177c..7433fc044 100644 --- a/charts/stash-postgres/doc.yaml +++ b/charts/stash-postgres/doc.yaml @@ -10,11 +10,11 @@ repository: name: appscode chart: name: stash-postgres - version: 10.14.0-v2 + version: 10.14.0-v3 values: "-- generate from values file --" valuesExample: "-- generate from values file --" prerequisites: - Kubernetes 1.11+ release: - name: stash-postgres-10.14.0-v2 + name: stash-postgres-10.14.0-v3 namespace: kube-system diff --git a/charts/stash-postgres/values.yaml b/charts/stash-postgres/values.yaml index e802620c2..206d2f89a 100644 --- a/charts/stash-postgres/values.yaml +++ b/charts/stash-postgres/values.yaml @@ -13,7 +13,7 @@ image: repository: stash-postgres # Tag of the image that is used to backup/restore PostgreSQL database. # This is usually same as the database version it can backup. - tag: 10.14.0-v2 + tag: 10.14.0-v3 backup: # Postgres dump command, can either be: pg_dumpall or pg_dump cmd: "pg_dumpall" diff --git a/docs/examples/backup/backupconfiguration.yaml b/docs/examples/backup/backupconfiguration.yaml index eebc641a3..6c430187f 100644 --- a/docs/examples/backup/backupconfiguration.yaml +++ b/docs/examples/backup/backupconfiguration.yaml @@ -6,7 +6,7 @@ metadata: spec: schedule: "*/5 * * * *" task: - name: postgres-backup-10.14.0-v2 + name: postgres-backup-10.14.0-v3 repository: name: gcs-repo target: diff --git a/docs/examples/restore/restoresession.yaml b/docs/examples/restore/restoresession.yaml index f557b20f1..682d2499d 100644 --- a/docs/examples/restore/restoresession.yaml +++ b/docs/examples/restore/restoresession.yaml @@ -7,7 +7,7 @@ metadata: kubedb.com/kind: Postgres # this label is mandatory if you are using KubeDB to deploy the database. spec: task: - name: postgres-restore-10.14.0-v2 + name: postgres-restore-10.14.0-v3 repository: name: gcs-repo target: