mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-24 06:28:13 +01:00
Move insecure_tls and timeout options to registry option Rename Bolt bucket Change default schedule Review registry client
10 lines
348 B
Go
10 lines
348 B
Go
package model
|
|
|
|
// Registry holds registry configuration
|
|
type Registry struct {
|
|
Username string `yaml:"username,omitempty" json:",omitempty"`
|
|
Password string `yaml:"password,omitempty" json:",omitempty"`
|
|
InsecureTLS bool `yaml:"insecure_tls,omitempty" json:",omitempty"`
|
|
Timeout int `yaml:"timeout,omitempty" json:",omitempty"`
|
|
}
|