You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by li...@apache.org on 2022/01/07 10:17:08 UTC

[skywalking-swck] branch master updated: Fix the satellite config not support number error (#56)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 39b0e11  Fix the satellite config not support number error (#56)
39b0e11 is described below

commit 39b0e11e2e24eee6153141f0b88bd2716906c8fd
Author: mrproliu <74...@qq.com>
AuthorDate: Fri Jan 7 18:17:04 2022 +0800

    Fix the satellite config not support number error (#56)
---
 operator/pkg/operator/manifests/satellite/templates/deployment.yaml | 2 +-
 operator/pkg/operator/repo/assets.gen.go                            | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/operator/pkg/operator/manifests/satellite/templates/deployment.yaml b/operator/pkg/operator/manifests/satellite/templates/deployment.yaml
index c2a3c18..2fb8186 100644
--- a/operator/pkg/operator/manifests/satellite/templates/deployment.yaml
+++ b/operator/pkg/operator/manifests/satellite/templates/deployment.yaml
@@ -79,5 +79,5 @@ spec:
               value: "11800"
             {{range .Spec.Config}}
             - name: {{ .Name }}
-              value: {{ .Value }}
+              value: "{{ .Value }}"
             {{end}}
diff --git a/operator/pkg/operator/repo/assets.gen.go b/operator/pkg/operator/repo/assets.gen.go
index 495e569..aeff096 100644
--- a/operator/pkg/operator/repo/assets.gen.go
+++ b/operator/pkg/operator/repo/assets.gen.go
@@ -32,7 +32,7 @@
 // oapserver/templates/service_account.yaml (1.09kB)
 // satellite/templates/cluster_role.yaml (1.104kB)
 // satellite/templates/cluster_role_binding.yaml (1.213kB)
-// satellite/templates/deployment.yaml (3.087kB)
+// satellite/templates/deployment.yaml (3.089kB)
 // satellite/templates/service.yaml (1.78kB)
 // satellite/templates/service_account.yaml (1.101kB)
 // storage/elasticsearch/templates/configmap.yaml (1.822kB)
@@ -1212,7 +1212,7 @@ spec:
               value: "11800"
             {{range .Spec.Config}}
             - name: {{ .Name }}
-              value: {{ .Value }}
+              value: "{{ .Value }}"
             {{end}}
 `)
 
@@ -1227,7 +1227,7 @@ func satelliteTemplatesDeploymentYaml() (*asset, error) {
 	}
 
 	info := bindataFileInfo{name: "satellite/templates/deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
-	a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x4b, 0x8d, 0xce, 0xcb, 0xce, 0x6a, 0x5a, 0xa8, 0x2, 0x9b, 0x5d, 0xbb, 0xb4, 0xe3, 0x61, 0x40, 0x92, 0x7e, 0xb3, 0x52, 0x54, 0x45, 0xb, 0xeb, 0xa8, 0x4b, 0xa1, 0x64, 0x9f, 0x83, 0xa3}}
+	a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd4, 0x11, 0x1b, 0x8f, 0x75, 0x86, 0x9c, 0x13, 0xaf, 0x30, 0xea, 0xfa, 0xd3, 0x53, 0x15, 0x3c, 0xc5, 0x36, 0xf0, 0x21, 0x57, 0x4f, 0xb3, 0x47, 0xa1, 0xbc, 0xb3, 0x33, 0xda, 0x12, 0x9c, 0x34}}
 	return a, nil
 }