fmt
This commit is contained in:
parent
709195848a
commit
371ca7f752
|
|
@ -14,14 +14,14 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
type execer struct {
|
type execer struct {
|
||||||
writer io.Writer
|
writer io.Writer
|
||||||
kubeContext string
|
kubeContext string
|
||||||
extra []string
|
extra []string
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewHelmExec(writer io.Writer, kubeContext string) Interface {
|
func NewHelmExec(writer io.Writer, kubeContext string) Interface {
|
||||||
return &execer{
|
return &execer{
|
||||||
writer: writer,
|
writer: writer,
|
||||||
kubeContext: kubeContext,
|
kubeContext: kubeContext,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
package state
|
package state
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"os"
|
"os"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"errors"
|
|
||||||
|
|
||||||
"github.com/roboll/helmfile/helmexec"
|
"github.com/roboll/helmfile/helmexec"
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue