Extend Iptables interface with SaveInto

This commit is contained in:
Wojciech Tyczynski
2017-05-18 11:51:07 +02:00
parent 028ac8034b
commit bcfae7e1ed
7 changed files with 69 additions and 7 deletions

View File

@@ -237,6 +237,10 @@ func (pb *prober) newExecInContainer(container v1.Container, containerID kubecon
}}
}
func (eic execInContainer) Run() error {
return fmt.Errorf("unimplemented")
}
func (eic execInContainer) CombinedOutput() ([]byte, error) {
return eic.run()
}
@@ -257,6 +261,10 @@ func (eic execInContainer) SetStdout(out io.Writer) {
//unimplemented
}
func (eic execInContainer) SetStderr(out io.Writer) {
//unimplemented
}
func (eic execInContainer) Stop() {
//unimplemented
}