Documentation ¶
Overview ¶
The config package defines configuration parameters for the charm store.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BlobStoreType ¶
type BlobStoreType string
const ( MongoDBBlobStore BlobStoreType = "mongodb" SwiftBlobStore BlobStoreType = "swift" )
type Config ¶
type Config struct { // TODO(rog) rename this to MongoAddr - it's not a URL. MongoURL string `yaml:"mongo-url,omitempty"` AuditLogFile string `yaml:"audit-log-file,omitempty"` AuditLogMaxSize int `yaml:"audit-log-max-size,omitempty"` AuditLogMaxAge int `yaml:"audit-log-max-age,omitempty"` APIAddr string `yaml:"api-addr,omitempty"` AuthUsername string `yaml:"auth-username,omitempty"` AuthPassword string `yaml:"auth-password,omitempty"` ESAddr string `yaml:"elasticsearch-addr,omitempty"` // elasticsearch is optional IdentityPublicKey *bakery.PublicKey `yaml:"identity-public-key,omitempty"` IdentityLocation string `yaml:"identity-location"` TermsPublicKey *bakery.PublicKey `yaml:"terms-public-key,omitempty"` TermsLocation string `yaml:"terms-location,omitempty"` AgentUsername string `yaml:"agent-username,omitempty"` AgentKey *bakery.KeyPair `yaml:"agent-key,omitempty"` MaxMgoSessions int `yaml:"max-mgo-sessions,omitempty"` RequestTimeout DurationString `yaml:"request-timeout,omitempty"` StatsCacheMaxAge DurationString `yaml:"stats-cache-max-age,omitempty"` SearchCacheMaxAge DurationString `yaml:"search-cache-max-age,omitempty"` Database string `yaml:"database,omitempty"` AccessLog string `yaml:"access-log"` MinUploadPartSize int64 `yaml:"min-upload-part-size"` MaxUploadPartSize int64 `yaml:"max-upload-part-size"` MaxUploadParts int `yaml:"max-upload-parts"` BlobStore BlobStoreType `yaml:"blobstore"` SwiftAuthURL string `yaml:"swift-auth-url"` SwiftEndpointURL string `yaml:"swift-endpoint-url"` SwiftUsername string `yaml:"swift-username"` SwiftSecret string `yaml:"swift-secret"` SwiftBucket string `yaml:"swift-bucket"` SwiftRegion string `yaml:"swift-region"` SwiftTenant string `yaml:"swift-tenant"` LoggingConfig string `yaml:"logging-config"` DockerRegistryAddress string `yaml:"docker-registry-address"` DockerRegistryAuthCertificates X509Certificates `yaml:"docker-registry-auth-certs"` DockerRegistryAuthKey X509PrivateKey `yaml:"docker-registry-auth-key"` DockerRegistryTokenDuration DurationString `yaml:"docker-registry-token-duration"` }
type DurationString ¶
DurationString holds a duration that marshals and unmarshals as a friendly string.
func (*DurationString) UnmarshalText ¶
func (dp *DurationString) UnmarshalText(data []byte) error
type X509Certificates ¶ added in v5.1.0
type X509Certificates struct {
Certificates []*x509.Certificate
}
func (*X509Certificates) UnmarshalText ¶ added in v5.1.0
func (c *X509Certificates) UnmarshalText(data []byte) error
type X509PrivateKey ¶ added in v5.1.0
func (*X509PrivateKey) UnmarshalText ¶ added in v5.1.0
func (k *X509PrivateKey) UnmarshalText(data []byte) error
Click to show internal directories.
Click to hide internal directories.