From dc6c9cc58e4a6bcdb2fd4169e92685efe600f764 Mon Sep 17 00:00:00 2001 From: zryfish Date: Wed, 6 May 2020 13:53:18 +0800 Subject: [PATCH] fix generation bug (#2048) --- pkg/simple/client/multicluster/options.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/simple/client/multicluster/options.go b/pkg/simple/client/multicluster/options.go index ec160563..605ee51d 100644 --- a/pkg/simple/client/multicluster/options.go +++ b/pkg/simple/client/multicluster/options.go @@ -47,8 +47,8 @@ func (o *Options) AddFlags(fs *pflag.FlagSet, s *Options) { fs.StringVar(&o.ProxyPublishAddress, "proxy-publish-address", s.ProxyPublishAddress, ""+ "Public address of tower, APIServer will use this field as proxy publish address. This field "+ - "takes precedence over field proxy-publish-service. For example, 139.198.121.121:8080.") + "takes precedence over field proxy-publish-service. For example, http://139.198.121.121:8080.") - fs.StringVar(&o.ProxyPublishAddress, "agent-image", s.AgentImage, ""+ + fs.StringVar(&o.AgentImage, "agent-image", s.AgentImage, ""+ "This field is used when generating deployment yaml for agent.") } -- GitLab