Documentation ¶
Index ¶
Constants ¶
View Source
const (
RsyncDaemonStartTimeOut = 10 * time.Second
)
View Source
const (
// RsyncRecommendedName is the recommended name for the rsync command
RsyncRecommendedName = "rsync"
)
Variables ¶
This section is empty.
Functions ¶
Types ¶
type RsyncOptions ¶
type RsyncOptions struct { Namespace string ContainerName string Source *pathSpec Destination *pathSpec Strategy copyStrategy StrategyName string Quiet bool Delete bool Watch bool RsyncInclude []string RsyncExclude []string RsyncProgress bool RsyncNoPerms bool Out io.Writer ErrOut io.Writer }
RsyncOptions holds the options to execute the sync command
func (*RsyncOptions) Complete ¶
Complete verifies command line arguments and loads data from the command environment
func (*RsyncOptions) PodName ¶
func (o *RsyncOptions) PodName() string
PodName returns the name of the pod as specified in either the the source or destination arguments
func (*RsyncOptions) RunRsync ¶
func (o *RsyncOptions) RunRsync() error
RunRsync copies files from source to destination
func (*RsyncOptions) Validate ¶
func (o *RsyncOptions) Validate() error
Validate checks that SyncOptions has all necessary fields
func (*RsyncOptions) WatchAndSync ¶ added in v1.3.0
func (o *RsyncOptions) WatchAndSync() error
WatchAndSync sets up a recursive filesystem watch on the sync path and invokes rsync each time the path changes.
Click to show internal directories.
Click to hide internal directories.