Skip to content

Commit

Permalink
[fluentd-kubernetes-aws] Fix syntax error (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nuru authored Aug 7, 2020
1 parent e0e84bc commit b4fd96c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion incubator/fluentd-kubernetes-aws/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
description: Collect Kubernetes logs with Fluentd and forward to AWS-hosted Elasticsearch.
icon: https://raw.githubusercontent.com/fluent/fluentd-docs/master/public/logo/Fluentd_square.png
name: fluentd-kubernetes-aws
version: 0.2.0
version: 0.2.1
appVersion: 1.4.2
home: https://www.fluentd.org/
sources:
Expand Down
2 changes: 1 addition & 1 deletion incubator/fluentd-kubernetes-aws/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ spec:
value: "https"
{{- end }}
{{- range $name, $value := .Values.env }}
{{- if (not (empty $value)) and (not (eq $name "FLUENT_ELASTICSEARCH_HOST" "FLUENT_ELASTICSEARCH_SCHEME")) }}
{{- if and (not (empty $value)) (not (eq $name "FLUENT_ELASTICSEARCH_HOST" "FLUENT_ELASTICSEARCH_SCHEME")) }}
- name: {{ $name | quote }}
value: {{ $value | quote }}
{{- end }}
Expand Down

0 comments on commit b4fd96c

Please sign in to comment.