Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Weiqiang TANG <[email protected]>
  • Loading branch information
weiqiangt committed Jan 10, 2020
1 parent 44dd4e4 commit d276077
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions build/yamls/antrea-ipsec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,6 @@ spec:
- args:
- --config
- /etc/antrea/antrea-controller.conf
- -v
- "1000"
command:
- antrea-controller
env:
Expand Down
2 changes: 0 additions & 2 deletions build/yamls/antrea.yml
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,6 @@ spec:
- args:
- --config
- /etc/antrea/antrea-controller.conf
- -v
- "1000"
command:
- antrea-controller
env:
Expand Down
2 changes: 1 addition & 1 deletion build/yamls/base/controller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
- name: antrea-controller
image: antrea
command: ["antrea-controller"]
args: ["--config", "/etc/antrea/antrea-controller.conf", "-v", "1000"]
args: ["--config", "/etc/antrea/antrea-controller.conf"]
env:
# Provide pod and node information for clusterinformation CRD.
- name: POD_NAME
Expand Down
2 changes: 1 addition & 1 deletion pkg/antctl/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ func (c *client) localRequest(opt *RequestOption) (io.Reader, error) {
// data.
func (c *client) Request(opt *RequestOption) (io.Reader, error) {
if c.inPod {
klog.Infoln("Antctl runs as local mode")
klog.Infoln("antctl runs as local mode")
return c.localRequest(opt)
}
kubeconfig, err := c.resolveKubeconfig(opt)
Expand Down

0 comments on commit d276077

Please sign in to comment.