package io
import "k8s.io/kubernetes/pkg/util/io"
Index ¶
Types ¶
type NsenterWriter ¶
type NsenterWriter struct{}
NsenterWriter is implementation of Writer interface that allows writing data to file using nsenter command. If a program (e.g. kubelet) runs in a container it may want to write data to a mounted device. Since in Docker, mount propagation mode is set to private, it will not see the mounted device in its own namespace. To work around this limitation one has to first enter hosts namespace (by using 'nsenter') and only then write data.
func (*NsenterWriter) WriteFile ¶
WriteFile calls 'nsenter cat - > <the file>' and 'nsenter chmod' to create a file on the host.
type StdWriter ¶
type StdWriter struct { }
StdWriter implements Writer interface and uses standard libraries for writing data to files.
func (*StdWriter) WriteFile ¶
WriteFile directly calls ioutil.WriteFile.
type Writer ¶
type Writer interface { // WriteFile mimics ioutil.WriteFile. WriteFile(filename string, data []byte, perm os.FileMode) error }
Writer is an interface which allows to write data to a file.
Source Files ¶
writer.go
- Version
- v1.9.0-alpha.0
- Published
- Sep 1, 2017
- Platform
- js/wasm
- Imports
- 6 packages
- Last checked
- 2 minutes ago –
Tools for package owners.