Skip to content

Commit fd5378b

Browse files
authored
Merge pull request #106 from bpineau/prepare-082-release
Prepare v0.8.2 release
2 parents 27c0b6e + 3af0fb3 commit fd5378b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

assets/helm-chart/katafygio/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v1
2-
appVersion: 0.8.1
2+
appVersion: 0.8.2
33
description: Continuously backup Kubernetes objets as YAML files in git
44
name: katafygio
55
home: https://github.com/bpineau/katafygio

assets/helm-chart/katafygio/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ The following table lists the configurable parameters of the Katafygio chart and
4949
|-------------------------|-------------------------------------------------------------|--------------------------------------|
5050
| `replicaCount` | Desired number of pods (leave to `1` when using local PV) | `1` |
5151
| `image.repository` | Katafygio container image name | `bpineau/katafygio` |
52-
| `image.tag` | Katafygio container image tag | `v0.8.1` |
52+
| `image.tag` | Katafygio container image tag | `v0.8.2` |
5353
| `image.pullPolicy` | Katafygio container image pull policy | `IfNotPresent` |
5454
| `localDir` | Container's local path where Katafygio will dump and commit | `/tmp/kf-dump` |
5555
| `gitTimeout` | Deadline for all git commands | `300s` |

assets/helm-chart/katafygio/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ serviceAccount:
9393

9494
image:
9595
repository: bpineau/katafygio
96-
tag: v0.8.1
96+
tag: v0.8.2
9797
pullPolicy: IfNotPresent
9898

9999
# resources define the deployment's cpu and memory resources.

cmd/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package cmd
33
import "github.com/spf13/cobra"
44

55
var (
6-
version = "0.8.1"
6+
version = "0.8.2"
77

88
versionCmd = &cobra.Command{
99
Use: "version",

0 commit comments

Comments
 (0)