Skip to content

Commit

Permalink
Merge pull request #8904 from rook/mergify/bp/release-1.6/pr-8860
Browse files Browse the repository at this point in the history
multus: do not build all the args to remote exec cmd (backport #8860)
  • Loading branch information
leseb committed Oct 6, 2021
2 parents 3380729 + 36e99ed commit ac45e47
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
19 changes: 17 additions & 2 deletions pkg/daemon/ceph/client/command.go
Expand Up @@ -129,7 +129,22 @@ func NewRBDCommand(context *clusterd.Context, clusterInfo *ClusterInfo, args []s
}

func (c *CephToolCommand) run() ([]byte, error) {
command, args := FinalizeCephCommandArgs(c.tool, c.clusterInfo, c.args, c.context.ConfigDir)
// Initialize the command and args
command := c.tool
args := c.args

// If this is a remote execution, we don't want to build the full set of args. For instance all
// these args are not needed since those paths don't exist inside the cmd-proxy container:
// --cluster=openshift-storage
// --conf=/var/lib/rook/openshift-storage/openshift-storage.config
// --name=client.admin
// --keyring=/var/lib/rook/openshift-storage/client.admin.keyring
//
// The cmd-proxy container will take care of the rest with the help of the env CEPH_ARGS
if !c.RemoteExecution {
command, args = FinalizeCephCommandArgs(c.tool, c.clusterInfo, c.args, c.context.ConfigDir)
}

if c.JsonOutput {
args = append(args, "--format", "json")
} else {
Expand Down Expand Up @@ -165,7 +180,7 @@ func (c *CephToolCommand) run() ([]byte, error) {
if command == RBDTool {
if c.RemoteExecution {
output, stderr, err = c.context.RemoteExecutor.ExecCommandInContainerWithFullOutputWithTimeout(ProxyAppLabel, CommandProxyInitContainerName, c.clusterInfo.Namespace, append([]string{command}, args...)...)
output = fmt.Sprintf("%s.%s", output, stderr)
output = fmt.Sprintf("%s. %s", output, stderr)
} else if c.timeout == 0 {
output, err = c.context.Executor.ExecuteCommandWithOutput(command, args...)
} else {
Expand Down
2 changes: 2 additions & 0 deletions pkg/daemon/ceph/client/command_test.go
Expand Up @@ -113,6 +113,7 @@ func TestNewRBDCommand(t *testing.T) {
executor.MockExecuteCommandWithOutput = func(command string, args ...string) (string, error) {
switch {
case command == "rbd" && args[0] == "create":
assert.Len(t, args, 8)
return "success", nil
}
return "", errors.Errorf("unexpected ceph command %q", args)
Expand All @@ -134,6 +135,7 @@ func TestNewRBDCommand(t *testing.T) {
assert.True(t, cmd.RemoteExecution)
_, err := cmd.Run()
assert.Error(t, err)
assert.Len(t, cmd.args, 4)
// This is not the best but it shows we go through the right codepath
assert.EqualError(t, err, "no pods found with selector \"rook-ceph-mgr\"")
})
Expand Down

0 comments on commit ac45e47

Please sign in to comment.