Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

stable/logdna-agent The value autoupdate for logdna-agent should be processed as a string #13496

Merged
merged 1 commit into from
Jun 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions stable/logdna-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log

This file documents all notable changes to Sysdig Falco Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## v1.0.1

* Fix autoupdate value handling

## v1.0.0

* Initial release
2 changes: 1 addition & 1 deletion stable/logdna-agent/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: logdna-agent
description: Run this, get logs. All cluster containers. LogDNA collector agent daemonset for Kubernetes.
version: 1.0.0
version: 1.0.1
appVersion: 1.5.6
keywords:
- logs
Expand Down
2 changes: 1 addition & 1 deletion stable/logdna-agent/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ spec:
{{- end }}
{{- if .Values.logdna.autoupdate }}
- name: LOGDNA_AUTOUPDATE
value: {{ .Values.logdna.autoupdate }}
value: "{{ .Values.logdna.autoupdate }}"
{{- end }}
resources:
{{ toYaml .Values.resources | indent 12 }}
Expand Down
2 changes: 1 addition & 1 deletion stable/logdna-agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ logdna:
# key:

## Optional settings
autoupdate: 0
autoupdate: "0"
# tags:

name: logdna-agent
Expand Down