|
|
@ -20,7 +20,7 @@ import (
|
|
|
|
"bytes"
|
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"errors"
|
|
|
|
"io"
|
|
|
|
"io"
|
|
|
|
"os"
|
|
|
|
"io/ioutil"
|
|
|
|
"testing"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
|
|
|
|
"k8s.io/helm/pkg/proto/hapi/release"
|
|
|
|
"k8s.io/helm/pkg/proto/hapi/release"
|
|
|
@ -145,7 +145,7 @@ type getFailingKubeClient struct {
|
|
|
|
|
|
|
|
|
|
|
|
func newGetFailingKubeClient() *getFailingKubeClient {
|
|
|
|
func newGetFailingKubeClient() *getFailingKubeClient {
|
|
|
|
return &getFailingKubeClient{
|
|
|
|
return &getFailingKubeClient{
|
|
|
|
PrintingKubeClient: tillerEnv.PrintingKubeClient{Out: os.Stdout},
|
|
|
|
PrintingKubeClient: tillerEnv.PrintingKubeClient{Out: ioutil.Discard},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -159,7 +159,7 @@ type deleteFailingKubeClient struct {
|
|
|
|
|
|
|
|
|
|
|
|
func newDeleteFailingKubeClient() *deleteFailingKubeClient {
|
|
|
|
func newDeleteFailingKubeClient() *deleteFailingKubeClient {
|
|
|
|
return &deleteFailingKubeClient{
|
|
|
|
return &deleteFailingKubeClient{
|
|
|
|
PrintingKubeClient: tillerEnv.PrintingKubeClient{Out: os.Stdout},
|
|
|
|
PrintingKubeClient: tillerEnv.PrintingKubeClient{Out: ioutil.Discard},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -173,7 +173,7 @@ type createFailingKubeClient struct {
|
|
|
|
|
|
|
|
|
|
|
|
func newCreateFailingKubeClient() *createFailingKubeClient {
|
|
|
|
func newCreateFailingKubeClient() *createFailingKubeClient {
|
|
|
|
return &createFailingKubeClient{
|
|
|
|
return &createFailingKubeClient{
|
|
|
|
PrintingKubeClient: tillerEnv.PrintingKubeClient{Out: os.Stdout},
|
|
|
|
PrintingKubeClient: tillerEnv.PrintingKubeClient{Out: ioutil.Discard},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|