Skip to content

Commit d4a4d31

Browse files
authored
Merge pull request #244 from akash4sh/main
fix: agent chart
2 parents cd03cfc + 3657479 commit d4a4d31

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

charts/agent/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 1.1.2
18+
version: 1.1.3
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/agent/templates/deployment.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -60,21 +60,21 @@ spec:
6060
- name: NATS_ADDRESS
6161
value: {{ .Values.nats.host }}
6262
- name: SCHEDULING_INTERVAL
63-
value: {{ .Values.schedule.schedulingInterval }}
63+
value: "{{ .Values.schedule.schedulingInterval }}"
6464
- name: SCHEDULER_ENABLE
65-
value: {{ .Values.schedule.enabled }}
65+
value: "{{ .Values.schedule.enabled }}"
6666
- name: OUTDATED_INTERVAL
67-
value: {{ .Values.schedule.outdatedInterval }}
67+
value: "{{ .Values.schedule.outdatedInterval }}"
6868
- name: GETALL_INTERVAL
69-
value: {{ .Values.schedule.getallInterval }}
69+
value: "{{ .Values.schedule.getallInterval }}"
7070
- name: KUBESCORE_INTERVAL
71-
value: {{ .Values.schedule.kubescoreInterval }}
71+
value: "{{ .Values.schedule.kubescoreInterval }}"
7272
- name: RAKKESS_INTERVAL
73-
value: {{ .Values.schedule.rakkessInterval }}
73+
value: "{{ .Values.schedule.rakkessInterval }}"
7474
- name: KUBEPREUPGRADE_INTERVAL
75-
value: {{ .Values.schedule.kubepreupgradeInterval }}
75+
value: "{{ .Values.schedule.kubepreupgradeInterval }}"
7676
- name: TRIVY_INTERVAL
77-
value: {{ .Values.TrivyInterval }}
77+
value: "{{ .Values.schedule.trivyInterval }}"
7878
resources:
7979
{{- toYaml .Values.resources | nindent 12 }}
8080
{{- if .Values.git_bridge.enabled }}

0 commit comments

Comments
 (0)