Skip to content

Commit 929386f

Browse files
authored
Merge pull request #85 from bpineau/prepare-080-release
Prepare 0.8.0 release
2 parents 9c57c9f + 3f3577d commit 929386f

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.7.3
2+
appVersion: 0.8.0
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.7.3` |
52+
| `image.tag` | Katafygio container image tag | `v0.8.0` |
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
@@ -87,7 +87,7 @@ serviceAccount:
8787

8888
image:
8989
repository: bpineau/katafygio
90-
tag: v0.7.4
90+
tag: v0.8.0
9191
pullPolicy: IfNotPresent
9292

9393
# 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.7.3"
6+
version = "0.8.0"
77

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

0 commit comments

Comments
 (0)