You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2021/04/05 08:09:37 UTC

[skywalking-kubernetes] branch master updated: Fix wrong `end` directive of `if` statement (#69)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-kubernetes.git


The following commit(s) were added to refs/heads/master by this push:
     new 7246917  Fix wrong `end` directive of `if` statement (#69)
7246917 is described below

commit 72469176d63b7552c14bb7f4f2652ca0f4bd5130
Author: Zhenxu Ke <ke...@apache.org>
AuthorDate: Mon Apr 5 16:09:31 2021 +0800

    Fix wrong `end` directive of `if` statement (#69)
---
 chart/skywalking/templates/es-init.job.yaml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chart/skywalking/templates/es-init.job.yaml b/chart/skywalking/templates/es-init.job.yaml
index fd37625..2266b3c 100644
--- a/chart/skywalking/templates/es-init.job.yaml
+++ b/chart/skywalking/templates/es-init.job.yaml
@@ -90,7 +90,6 @@ spec:
         - name: {{ $key }}
           value: {{ $value | quote }}
         {{- end }}
-{{- end}}
         volumeMounts:
           {{- if (.Files.Glob "files/conf.d/oap/**") }}
             {{ range $path, $bytes := .Files.Glob "files/conf.d/oap/**" }}
@@ -105,3 +104,4 @@ spec:
           configMap:
             name: {{ template "skywalking.fullname" . }}-oap-cm-override
         {{- end }}
+{{- end}}