Skip to content

Commit

Permalink
Merge pull request #244 from akash4sh/main
Browse files Browse the repository at this point in the history
fix: agent chart
  • Loading branch information
jebinjeb authored Sep 21, 2023
2 parents cd03cfc + 3657479 commit d4a4d31
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/agent/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.1.2
version: 1.1.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
16 changes: 8 additions & 8 deletions charts/agent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,21 +60,21 @@ spec:
- name: NATS_ADDRESS
value: {{ .Values.nats.host }}
- name: SCHEDULING_INTERVAL
value: {{ .Values.schedule.schedulingInterval }}
value: "{{ .Values.schedule.schedulingInterval }}"
- name: SCHEDULER_ENABLE
value: {{ .Values.schedule.enabled }}
value: "{{ .Values.schedule.enabled }}"
- name: OUTDATED_INTERVAL
value: {{ .Values.schedule.outdatedInterval }}
value: "{{ .Values.schedule.outdatedInterval }}"
- name: GETALL_INTERVAL
value: {{ .Values.schedule.getallInterval }}
value: "{{ .Values.schedule.getallInterval }}"
- name: KUBESCORE_INTERVAL
value: {{ .Values.schedule.kubescoreInterval }}
value: "{{ .Values.schedule.kubescoreInterval }}"
- name: RAKKESS_INTERVAL
value: {{ .Values.schedule.rakkessInterval }}
value: "{{ .Values.schedule.rakkessInterval }}"
- name: KUBEPREUPGRADE_INTERVAL
value: {{ .Values.schedule.kubepreupgradeInterval }}
value: "{{ .Values.schedule.kubepreupgradeInterval }}"
- name: TRIVY_INTERVAL
value: {{ .Values.TrivyInterval }}
value: "{{ .Values.schedule.trivyInterval }}"
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- if .Values.git_bridge.enabled }}
Expand Down

0 comments on commit d4a4d31

Please sign in to comment.