2014-10-27 23:16:19 +00:00
|
|
|
package configuration
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2014-12-02 01:32:31 +00:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
2014-12-17 22:18:58 +00:00
|
|
|
"reflect"
|
2014-10-27 23:16:19 +00:00
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2014-11-04 17:41:32 +00:00
|
|
|
// Configuration is a versioned registry configuration, intended to be provided by a yaml file, and
|
|
|
|
// optionally modified by environment variables
|
2014-10-27 23:16:19 +00:00
|
|
|
type Configuration struct {
|
2014-11-04 17:41:32 +00:00
|
|
|
// Version is the version which defines the format of the rest of the configuration
|
2014-11-13 01:19:19 +00:00
|
|
|
Version Version `yaml:"version"`
|
2014-11-04 17:41:32 +00:00
|
|
|
|
|
|
|
// Loglevel is the level at which registry operations are logged
|
|
|
|
Loglevel Loglevel `yaml:"loglevel"`
|
|
|
|
|
|
|
|
// Storage is the configuration for the registry's storage driver
|
2014-11-13 01:19:19 +00:00
|
|
|
Storage Storage `yaml:"storage"`
|
2014-12-02 01:32:31 +00:00
|
|
|
|
2014-12-18 20:30:19 +00:00
|
|
|
// Auth allows configuration of various authorization methods that may be
|
|
|
|
// used to gate requests.
|
|
|
|
Auth Auth `yaml:"auth"`
|
|
|
|
|
2015-01-09 01:29:22 +00:00
|
|
|
// LayerHandler specifies a middleware for serving image layers.
|
|
|
|
LayerHandler LayerHandler `yaml:"layerhandler"`
|
|
|
|
|
2014-12-13 01:49:06 +00:00
|
|
|
// Reporting is the configuration for error reporting
|
|
|
|
Reporting Reporting `yaml:"reporting"`
|
|
|
|
|
2014-12-02 01:32:31 +00:00
|
|
|
// HTTP contains configuration parameters for the registry's http
|
|
|
|
// interface.
|
|
|
|
HTTP struct {
|
|
|
|
// Addr specifies the bind address for the registry instance.
|
|
|
|
Addr string `yaml:"addr"`
|
2015-01-05 07:59:29 +00:00
|
|
|
|
|
|
|
// Secret specifies the secret key which HMAC tokens are created with.
|
|
|
|
Secret string `yaml:"secret"`
|
2015-02-02 22:38:47 +00:00
|
|
|
|
|
|
|
// TLS instructs the http server to listen with a TLS configuration.
|
|
|
|
// This only support simple tls configuration with a cert and key.
|
|
|
|
// Mostly, this is useful for testing situations or simple deployments
|
|
|
|
// that require tls. If more complex configurations are required, use
|
|
|
|
// a proxy or make a proposal to add support here.
|
|
|
|
TLS struct {
|
|
|
|
// Certificate specifies the path to an x509 certificate file to
|
|
|
|
// be used for TLS.
|
|
|
|
Certificate string `yaml:"certificate"`
|
|
|
|
|
|
|
|
// Key specifies the path to the x509 key file, which should
|
|
|
|
// contain the private portion for the file specified in
|
|
|
|
// Certificate.
|
|
|
|
Key string `yaml:"key"`
|
|
|
|
} `yaml:"tls"`
|
2015-01-05 22:25:28 +00:00
|
|
|
} `yaml:"http"`
|
2014-10-27 23:16:19 +00:00
|
|
|
}
|
|
|
|
|
2014-11-17 23:44:07 +00:00
|
|
|
// v0_1Configuration is a Version 0.1 Configuration struct
|
2014-11-04 17:41:32 +00:00
|
|
|
// This is currently aliased to Configuration, as it is the current version
|
2014-11-17 23:44:07 +00:00
|
|
|
type v0_1Configuration Configuration
|
2014-11-04 17:41:32 +00:00
|
|
|
|
|
|
|
// UnmarshalYAML implements the yaml.Unmarshaler interface
|
|
|
|
// Unmarshals a string of the form X.Y into a Version, validating that X and Y can represent uints
|
|
|
|
func (version *Version) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
|
|
var versionString string
|
|
|
|
err := unmarshal(&versionString)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
newVersion := Version(versionString)
|
|
|
|
if _, err := newVersion.major(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if _, err := newVersion.minor(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
*version = newVersion
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// CurrentVersion is the most recent Version that can be parsed
|
|
|
|
var CurrentVersion = MajorMinorVersion(0, 1)
|
|
|
|
|
|
|
|
// Loglevel is the level at which operations are logged
|
|
|
|
// This can be error, warn, info, or debug
|
|
|
|
type Loglevel string
|
|
|
|
|
|
|
|
// UnmarshalYAML implements the yaml.Umarshaler interface
|
|
|
|
// Unmarshals a string into a Loglevel, lowercasing the string and validating that it represents a
|
|
|
|
// valid loglevel
|
|
|
|
func (loglevel *Loglevel) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
|
|
var loglevelString string
|
|
|
|
err := unmarshal(&loglevelString)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
loglevelString = strings.ToLower(loglevelString)
|
|
|
|
switch loglevelString {
|
|
|
|
case "error", "warn", "info", "debug":
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("Invalid loglevel %s Must be one of [error, warn, info, debug]", loglevelString)
|
|
|
|
}
|
|
|
|
|
|
|
|
*loglevel = Loglevel(loglevelString)
|
|
|
|
return nil
|
2014-10-27 23:16:19 +00:00
|
|
|
}
|
|
|
|
|
2014-12-18 20:30:19 +00:00
|
|
|
// Parameters defines a key-value parameters mapping
|
|
|
|
type Parameters map[string]interface{}
|
|
|
|
|
2014-10-30 00:42:23 +00:00
|
|
|
// Storage defines the configuration for registry object storage
|
2014-11-04 17:41:32 +00:00
|
|
|
type Storage map[string]Parameters
|
2014-10-30 00:42:23 +00:00
|
|
|
|
2014-11-04 17:41:32 +00:00
|
|
|
// Type returns the storage driver type, such as filesystem or s3
|
|
|
|
func (storage Storage) Type() string {
|
|
|
|
// Return only key in this map
|
|
|
|
for k := range storage {
|
|
|
|
return k
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parameters returns the Parameters map for a Storage configuration
|
|
|
|
func (storage Storage) Parameters() Parameters {
|
|
|
|
return storage[storage.Type()]
|
|
|
|
}
|
|
|
|
|
|
|
|
// setParameter changes the parameter at the provided key to the new value
|
2014-12-18 03:06:55 +00:00
|
|
|
func (storage Storage) setParameter(key string, value interface{}) {
|
2014-11-04 17:41:32 +00:00
|
|
|
storage[storage.Type()][key] = value
|
2014-10-27 23:16:19 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 17:41:32 +00:00
|
|
|
// UnmarshalYAML implements the yaml.Unmarshaler interface
|
|
|
|
// Unmarshals a single item map into a Storage or a string into a Storage type with no parameters
|
|
|
|
func (storage *Storage) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
|
|
var storageMap map[string]Parameters
|
|
|
|
err := unmarshal(&storageMap)
|
|
|
|
if err == nil {
|
|
|
|
if len(storageMap) > 1 {
|
|
|
|
types := make([]string, 0, len(storageMap))
|
|
|
|
for k := range storageMap {
|
|
|
|
types = append(types, k)
|
|
|
|
}
|
|
|
|
return fmt.Errorf("Must provide exactly one storage type. Provided: %v", types)
|
|
|
|
}
|
|
|
|
*storage = storageMap
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var storageType string
|
|
|
|
err = unmarshal(&storageType)
|
|
|
|
if err == nil {
|
|
|
|
*storage = Storage{storageType: Parameters{}}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalYAML implements the yaml.Marshaler interface
|
2014-10-27 23:16:19 +00:00
|
|
|
func (storage Storage) MarshalYAML() (interface{}, error) {
|
2014-11-13 01:19:19 +00:00
|
|
|
if storage.Parameters() == nil {
|
2014-12-18 20:30:19 +00:00
|
|
|
return storage.Type(), nil
|
2014-11-04 17:41:32 +00:00
|
|
|
}
|
|
|
|
return map[string]Parameters(storage), nil
|
2014-10-27 23:16:19 +00:00
|
|
|
}
|
|
|
|
|
2014-12-18 20:30:19 +00:00
|
|
|
// Auth defines the configuration for registry authorization.
|
|
|
|
type Auth map[string]Parameters
|
|
|
|
|
|
|
|
// Type returns the storage driver type, such as filesystem or s3
|
|
|
|
func (auth Auth) Type() string {
|
|
|
|
// Return only key in this map
|
|
|
|
for k := range auth {
|
|
|
|
return k
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parameters returns the Parameters map for an Auth configuration
|
|
|
|
func (auth Auth) Parameters() Parameters {
|
|
|
|
return auth[auth.Type()]
|
|
|
|
}
|
|
|
|
|
|
|
|
// setParameter changes the parameter at the provided key to the new value
|
|
|
|
func (auth Auth) setParameter(key string, value interface{}) {
|
|
|
|
auth[auth.Type()][key] = value
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalYAML implements the yaml.Unmarshaler interface
|
|
|
|
// Unmarshals a single item map into a Storage or a string into a Storage type with no parameters
|
|
|
|
func (auth *Auth) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
|
|
var m map[string]Parameters
|
|
|
|
err := unmarshal(&m)
|
|
|
|
if err == nil {
|
|
|
|
if len(m) > 1 {
|
|
|
|
types := make([]string, 0, len(m))
|
|
|
|
for k := range m {
|
|
|
|
types = append(types, k)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO(stevvooe): May want to change this slightly for
|
|
|
|
// authorization to allow multiple challenges.
|
|
|
|
return fmt.Errorf("must provide exactly one type. Provided: %v", types)
|
|
|
|
|
|
|
|
}
|
|
|
|
*auth = m
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var authType string
|
|
|
|
err = unmarshal(&authType)
|
|
|
|
if err == nil {
|
|
|
|
*auth = Auth{authType: Parameters{}}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalYAML implements the yaml.Marshaler interface
|
|
|
|
func (auth Auth) MarshalYAML() (interface{}, error) {
|
|
|
|
if auth.Parameters() == nil {
|
|
|
|
return auth.Type(), nil
|
|
|
|
}
|
|
|
|
return map[string]Parameters(auth), nil
|
|
|
|
}
|
2014-11-04 17:41:32 +00:00
|
|
|
|
2014-12-13 01:49:06 +00:00
|
|
|
// Reporting defines error reporting methods.
|
|
|
|
type Reporting struct {
|
|
|
|
// Bugsnag configures error reporting for Bugsnag (bugsnag.com).
|
2014-12-13 02:05:37 +00:00
|
|
|
Bugsnag BugsnagReporting `yaml:"bugsnag"`
|
2014-12-13 01:49:06 +00:00
|
|
|
// NewRelic configures error reporting for NewRelic (newrelic.com)
|
2014-12-13 02:05:37 +00:00
|
|
|
NewRelic NewRelicReporting `yaml:"newrelic"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// BugsnagReporting configures error reporting for Bugsnag (bugsnag.com).
|
|
|
|
type BugsnagReporting struct {
|
|
|
|
// APIKey is the Bugsnag api key.
|
|
|
|
APIKey string `yaml:"apikey"`
|
|
|
|
// ReleaseStage tracks where the registry is deployed.
|
|
|
|
// Examples: production, staging, development
|
|
|
|
ReleaseStage string `yaml:"releasestage"`
|
|
|
|
// Endpoint is used for specifying an enterprise Bugsnag endpoint.
|
|
|
|
Endpoint string `yaml:"endpoint"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewRelicReporting configures error reporting for NewRelic (newrelic.com)
|
|
|
|
type NewRelicReporting struct {
|
|
|
|
// LicenseKey is the NewRelic user license key
|
|
|
|
LicenseKey string `yaml:"licensekey"`
|
2015-01-06 18:59:52 +00:00
|
|
|
// Name is the component name of the registry in NewRelic
|
2014-12-13 02:05:37 +00:00
|
|
|
Name string `yaml:"name"`
|
2014-12-13 01:49:06 +00:00
|
|
|
}
|
|
|
|
|
2015-01-09 00:55:40 +00:00
|
|
|
// LayerHandler defines the configuration for middleware layer serving
|
|
|
|
type LayerHandler map[string]Parameters
|
|
|
|
|
|
|
|
// Type returns the layerhandler type
|
|
|
|
func (layerHandler LayerHandler) Type() string {
|
|
|
|
// Return only key in this map
|
|
|
|
for k := range layerHandler {
|
|
|
|
return k
|
|
|
|
}
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parameters returns the Parameters map for a LayerHandler configuration
|
|
|
|
func (layerHandler LayerHandler) Parameters() Parameters {
|
|
|
|
return layerHandler[layerHandler.Type()]
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnmarshalYAML implements the yaml.Unmarshaler interface
|
|
|
|
// Unmarshals a single item map into a Storage or a string into a Storage type with no parameters
|
|
|
|
func (layerHandler *LayerHandler) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
|
|
|
var storageMap map[string]Parameters
|
|
|
|
err := unmarshal(&storageMap)
|
|
|
|
if err == nil {
|
|
|
|
if len(storageMap) > 1 {
|
|
|
|
types := make([]string, 0, len(storageMap))
|
|
|
|
for k := range storageMap {
|
|
|
|
types = append(types, k)
|
|
|
|
}
|
|
|
|
return fmt.Errorf("Must provide exactly one layerhandler type. Provided: %v", types)
|
|
|
|
}
|
|
|
|
*layerHandler = storageMap
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var storageType string
|
|
|
|
err = unmarshal(&storageType)
|
|
|
|
if err == nil {
|
|
|
|
*layerHandler = LayerHandler{storageType: Parameters{}}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// MarshalYAML implements the yaml.Marshaler interface
|
|
|
|
func (layerHandler LayerHandler) MarshalYAML() (interface{}, error) {
|
|
|
|
if layerHandler.Parameters() == nil {
|
2015-01-09 01:29:22 +00:00
|
|
|
t := layerHandler.Type()
|
|
|
|
if t == "" {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
return t, nil
|
2015-01-09 00:55:40 +00:00
|
|
|
}
|
|
|
|
return map[string]Parameters(layerHandler), nil
|
|
|
|
}
|
|
|
|
|
2014-10-30 00:42:23 +00:00
|
|
|
// Parse parses an input configuration yaml document into a Configuration struct
|
2014-11-04 17:41:32 +00:00
|
|
|
// This should generally be capable of handling old configuration format versions
|
2014-10-30 00:42:23 +00:00
|
|
|
//
|
2014-11-04 17:41:32 +00:00
|
|
|
// Environment variables may be used to override configuration parameters other than version,
|
|
|
|
// following the scheme below:
|
|
|
|
// Configuration.Abc may be replaced by the value of REGISTRY_ABC,
|
|
|
|
// Configuration.Abc.Xyz may be replaced by the value of REGISTRY_ABC_XYZ, and so forth
|
2014-12-02 01:32:31 +00:00
|
|
|
func Parse(rd io.Reader) (*Configuration, error) {
|
|
|
|
in, err := ioutil.ReadAll(rd)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-12-17 22:18:58 +00:00
|
|
|
p := NewParser("registry", []VersionedParseInfo{
|
|
|
|
{
|
|
|
|
Version: MajorMinorVersion(0, 1),
|
|
|
|
ParseAs: reflect.TypeOf(v0_1Configuration{}),
|
|
|
|
ConversionFunc: func(c interface{}) (interface{}, error) {
|
|
|
|
if v0_1, ok := c.(*v0_1Configuration); ok {
|
|
|
|
if v0_1.Loglevel == Loglevel("") {
|
|
|
|
v0_1.Loglevel = Loglevel("info")
|
|
|
|
}
|
|
|
|
if v0_1.Storage.Type() == "" {
|
|
|
|
return nil, fmt.Errorf("No storage configuration provided")
|
|
|
|
}
|
|
|
|
return (*Configuration)(v0_1), nil
|
|
|
|
}
|
|
|
|
return nil, fmt.Errorf("Expected *v0_1Configuration, received %#v", c)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
config := new(Configuration)
|
|
|
|
err = p.Parse(in, config)
|
2014-10-27 23:16:19 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2014-12-17 22:18:58 +00:00
|
|
|
return config, nil
|
2014-10-27 23:16:19 +00:00
|
|
|
}
|