File tree 5 files changed +13
-14
lines changed
assets/helm-chart/katafygio
5 files changed +13
-14
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
- appVersion : 0.7.2
2
+ appVersion : 0.7.3
3
3
description : Continuously backup Kubernetes objets as YAML files in git
4
4
name : katafygio
5
5
home : https://github.com/bpineau/katafygio
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ The following table lists the configurable parameters of the Katafygio chart and
49
49
| -------------------------| -------------------------------------------------------------| --------------------------------------|
50
50
| ` replicaCount ` | Desired number of pods | ` 1 ` |
51
51
| ` 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 ` |
53
53
| ` image.pullPolicy ` | Katafygio container image pull policy | ` IfNotPresent ` |
54
54
| ` localDir ` | Container's local path where Katafygio will dump and commit | ` /tmp/kf-dump ` |
55
55
| ` gitUrl ` | Optional remote repository where changes will be pushed | ` nil ` |
Original file line number Diff line number Diff line change @@ -76,13 +76,20 @@ spec:
76
76
{{- end }}
77
77
resources :
78
78
{{ toYaml .Values.resources | indent 12 }}
79
- {{- if and .Values.gitSshKey .Values.gitUrl }}
80
79
volumes :
80
+ {{- if and .Values.gitSshKey .Values.gitUrl }}
81
81
- name : katafygio-gitssh
82
82
secret :
83
83
secretName : {{ template "katafygio.fullname" . }}
84
84
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 -}}
86
93
{{- with .Values.nodeSelector }}
87
94
nodeSelector :
88
95
{{ toYaml . | indent 8 }}
@@ -95,11 +102,3 @@ spec:
95
102
tolerations :
96
103
{{ toYaml . | indent 8 }}
97
104
{{- 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 -}}
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ serviceAccount:
83
83
84
84
image :
85
85
repository : bpineau/katafygio
86
- tag : v0.7.2
86
+ tag : v0.7.3
87
87
pullPolicy : IfNotPresent
88
88
89
89
# resources define the deployment's cpu and memory resources.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package cmd
3
3
import "github.com/spf13/cobra"
4
4
5
5
var (
6
- version = "0.7.1 "
6
+ version = "0.7.3 "
7
7
8
8
versionCmd = & cobra.Command {
9
9
Use : "version" ,
You can’t perform that action at this time.
0 commit comments