diff --git a/assets/helm-chart/katafygio/Chart.yaml b/assets/helm-chart/katafygio/Chart.yaml index a797fea..b309d21 100644 --- a/assets/helm-chart/katafygio/Chart.yaml +++ b/assets/helm-chart/katafygio/Chart.yaml @@ -1,5 +1,5 @@ apiVersion: v1 -appVersion: 0.8.1 +appVersion: 0.8.2 description: Continuously backup Kubernetes objets as YAML files in git name: katafygio home: https://github.com/bpineau/katafygio diff --git a/assets/helm-chart/katafygio/README.md b/assets/helm-chart/katafygio/README.md index 1a46621..2df4276 100644 --- a/assets/helm-chart/katafygio/README.md +++ b/assets/helm-chart/katafygio/README.md @@ -49,7 +49,7 @@ The following table lists the configurable parameters of the Katafygio chart and |-------------------------|-------------------------------------------------------------|--------------------------------------| | `replicaCount` | Desired number of pods (leave to `1` when using local PV) | `1` | | `image.repository` | Katafygio container image name | `bpineau/katafygio` | -| `image.tag` | Katafygio container image tag | `v0.8.1` | +| `image.tag` | Katafygio container image tag | `v0.8.2` | | `image.pullPolicy` | Katafygio container image pull policy | `IfNotPresent` | | `localDir` | Container's local path where Katafygio will dump and commit | `/tmp/kf-dump` | | `gitTimeout` | Deadline for all git commands | `300s` | diff --git a/assets/helm-chart/katafygio/values.yaml b/assets/helm-chart/katafygio/values.yaml index cab2dbf..e0a02b9 100644 --- a/assets/helm-chart/katafygio/values.yaml +++ b/assets/helm-chart/katafygio/values.yaml @@ -93,7 +93,7 @@ serviceAccount: image: repository: bpineau/katafygio - tag: v0.8.1 + tag: v0.8.2 pullPolicy: IfNotPresent # resources define the deployment's cpu and memory resources. diff --git a/cmd/version.go b/cmd/version.go index 84cca67..0784b04 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -3,7 +3,7 @@ package cmd import "github.com/spf13/cobra" var ( - version = "0.8.1" + version = "0.8.2" versionCmd = &cobra.Command{ Use: "version",