Skip to content

Commit a5519c3

Browse files
authored
fix(ctrlc-sync): missing provider (#28)
1 parent c2455dc commit a5519c3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

charts/ctrlc-sync/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: ctrlc-sync
33
description: A Helm chart for ctrlc sync jobs in Kubernetes
44
type: application
5-
version: 0.1.0
5+
version: 0.1.1
66
appVersion: "v0.16.2"
77

88
maintainers:

charts/ctrlc-sync/templates/cronjob.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ spec:
6565
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
6666
imagePullPolicy: {{ .Values.image.pullPolicy }}
6767
command: ["ctrlc"]
68-
args: ["sync", "kubernetes"]
68+
args: ["sync", "kubernetes", "--provider={{ .Values.ctrlc.provider }}"]
6969
env:
7070
{{- include "ctrlc-sync.envs" . | nindent 16 }}
7171
{{- with .Values.resources }}

charts/ctrlc-sync/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
ctrlc:
22
target: "kubernetes"
3+
provider: ""
34
# All of following values under the ctrlc config from this point
45
# can be provided directly as strings or as valueFrom
56
# reference -> https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.35/#envvarsource-v1-core

0 commit comments

Comments
 (0)