File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,13 @@ import (
4
4
"context"
5
5
"fmt"
6
6
"io"
7
- e2e "k8s.io/kubernetes/test/e2e/framework"
8
7
"os"
9
8
"os/exec"
10
9
"path/filepath"
11
10
"strings"
12
11
12
+ e2e "k8s.io/kubernetes/test/e2e/framework"
13
+
13
14
corev1 "k8s.io/api/core/v1"
14
15
crdv1 "k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1"
15
16
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
@@ -189,8 +190,7 @@ func (c *CLI) Template(t string) *CLI {
189
190
FatalErr ("Cannot use Template() for non-get verbs." )
190
191
}
191
192
templateArgs := []string {"--output=template" , fmt .Sprintf ("--template=%s" , t )}
192
- commandArgs := append (c .commandArgs , templateArgs ... )
193
- c .finalArgs = append (c .globalArgs , commandArgs ... )
193
+ c .commandArgs = append (c .commandArgs , templateArgs ... )
194
194
return c
195
195
}
196
196
You can’t perform that action at this time.
0 commit comments