Skip to content

Commit 4e2e2ce

Browse files
committed
Chart: group volumes definitions
And prepare for the upcoming 0.7.3 release.
1 parent 28ac43f commit 4e2e2ce

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
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.2
2+
appVersion: 0.7.3
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 | `1` |
5151
| `image.repository` | Katafygio container image name | `bpineau/katafygio` |
52-
| `image.tag` | Katafygio container image tag | `v0.7.1` |
52+
| `image.tag` | Katafygio container image tag | `v0.7.3` |
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
| `gitUrl` | Optional remote repository where changes will be pushed | `nil` |

assets/helm-chart/katafygio/templates/deployment.yaml

+9-10
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,20 @@ spec:
7676
{{- end }}
7777
resources:
7878
{{ toYaml .Values.resources | indent 12 }}
79-
{{- if and .Values.gitSshKey .Values.gitUrl }}
8079
volumes:
80+
{{- if and .Values.gitSshKey .Values.gitUrl }}
8181
- name: katafygio-gitssh
8282
secret:
8383
secretName: {{ template "katafygio.fullname" . }}
8484
defaultMode: 256
85-
{{- end }}
85+
{{- end }}
86+
- name: katafygio-data
87+
{{- if .Values.persistence.enabled }}
88+
persistentVolumeClaim:
89+
claimName: {{ .Values.persistence.existingClaim | default (include "katafygio.fullname" .) }}
90+
{{- else }}
91+
emptyDir: {}
92+
{{- end -}}
8693
{{- with .Values.nodeSelector }}
8794
nodeSelector:
8895
{{ toYaml . | indent 8 }}
@@ -95,11 +102,3 @@ spec:
95102
tolerations:
96103
{{ toYaml . | indent 8 }}
97104
{{- end }}
98-
volumes:
99-
- name: katafygio-data
100-
{{- if .Values.persistence.enabled }}
101-
persistentVolumeClaim:
102-
claimName: {{ .Values.persistence.existingClaim | default (include "katafygio.fullname" .) }}
103-
{{- else }}
104-
emptyDir: {}
105-
{{- end -}}

assets/helm-chart/katafygio/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ serviceAccount:
8383

8484
image:
8585
repository: bpineau/katafygio
86-
tag: v0.7.2
86+
tag: v0.7.3
8787
pullPolicy: IfNotPresent
8888

8989
# 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.1"
6+
version = "0.7.3"
77

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

0 commit comments

Comments
 (0)