URGENT: heal CI: fix codespell
Signed-off-by: Valentin Rothberg <vrothberg@redhat.com>
This commit is contained in:
parent
dc1d5cc2d5
commit
6923f768c2
|
|
@ -49,7 +49,7 @@ A Containerfile is similar to a Makefile.
|
||||||
to a new image if necessary, before finally outputting the ID of the new
|
to a new image if necessary, before finally outputting the ID of the new
|
||||||
image.
|
image.
|
||||||
|
|
||||||
Container engines re-use intermediate images whenever possible. This significantly
|
Container engines reuse intermediate images whenever possible. This significantly
|
||||||
accelerates the *build* process.
|
accelerates the *build* process.
|
||||||
|
|
||||||
# FORMAT
|
# FORMAT
|
||||||
|
|
|
||||||
|
|
@ -72,7 +72,7 @@ type CopyOptions struct {
|
||||||
// Default 3.
|
// Default 3.
|
||||||
MaxRetries *uint
|
MaxRetries *uint
|
||||||
// RetryDelay used for the exponential back off of MaxRetries.
|
// RetryDelay used for the exponential back off of MaxRetries.
|
||||||
// Default 1 time.Scond.
|
// Default 1 time.Second.
|
||||||
RetryDelay *time.Duration
|
RetryDelay *time.Duration
|
||||||
// ManifestMIMEType is the desired media type the image will be
|
// ManifestMIMEType is the desired media type the image will be
|
||||||
// converted to if needed. Note that it must contain the exact MIME
|
// converted to if needed. Note that it must contain the exact MIME
|
||||||
|
|
|
||||||
|
|
@ -289,7 +289,7 @@ func filterReferences(r *Runtime, value string) filterFunc {
|
||||||
refString := ref.String() // FQN with tag/digest
|
refString := ref.String() // FQN with tag/digest
|
||||||
candidates := []string{refString}
|
candidates := []string{refString}
|
||||||
|
|
||||||
// Split the reference into 3 components (twice if diggested/tagged):
|
// Split the reference into 3 components (twice if digested/tagged):
|
||||||
// 1) Fully-qualified reference
|
// 1) Fully-qualified reference
|
||||||
// 2) Without domain
|
// 2) Without domain
|
||||||
// 3) Without domain and path
|
// 3) Without domain and path
|
||||||
|
|
|
||||||
|
|
@ -53,7 +53,7 @@ type netavarkNetwork struct {
|
||||||
// ipamDBPath is the path to the ip allocation bolt db
|
// ipamDBPath is the path to the ip allocation bolt db
|
||||||
ipamDBPath string
|
ipamDBPath string
|
||||||
|
|
||||||
// syslog describes whenever the netavark debbug output should be log to the syslog as well.
|
// syslog describes whenever the netavark debug output should be log to the syslog as well.
|
||||||
// This will use logrus to do so, make sure logrus is set up to log to the syslog.
|
// This will use logrus to do so, make sure logrus is set up to log to the syslog.
|
||||||
syslog bool
|
syslog bool
|
||||||
|
|
||||||
|
|
@ -93,7 +93,7 @@ type InitConfig struct {
|
||||||
// PluginDirs list of directories were netavark plugins are located
|
// PluginDirs list of directories were netavark plugins are located
|
||||||
PluginDirs []string
|
PluginDirs []string
|
||||||
|
|
||||||
// Syslog describes whenever the netavark debbug output should be log to the syslog as well.
|
// Syslog describes whenever the netavark debug output should be log to the syslog as well.
|
||||||
// This will use logrus to do so, make sure logrus is set up to log to the syslog.
|
// This will use logrus to do so, make sure logrus is set up to log to the syslog.
|
||||||
Syslog bool
|
Syslog bool
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -662,7 +662,7 @@ type MachineConfig struct {
|
||||||
Provider string `toml:"provider,omitempty"`
|
Provider string `toml:"provider,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// FarmConfig represents the "farm" TOML config tabls
|
// FarmConfig represents the "farm" TOML config tables
|
||||||
type FarmConfig struct {
|
type FarmConfig struct {
|
||||||
// Default is the default farm to be used when farming out builds
|
// Default is the default farm to be used when farming out builds
|
||||||
Default string `toml:"default,omitempty"`
|
Default string `toml:"default,omitempty"`
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue