fi

package
v1.4.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 21, 2016 License: Apache-2.0 Imports: 31 Imported by: 0

Documentation

Index

Constants

View Source
const (
	SecretTypeSSHPublicKey = "SSHPublicKey"
	SecretTypeKeypair      = "Keypair"
	SecretTypeSecret       = "Secret"

	// Name for the primary SSH key
	SecretNameSSHPrimary = "admin"
)
View Source
const CertificateId_CA = "ca"

Variables

This section is empty.

Functions

func Bool

func Bool(v bool) *bool

func BoolValue

func BoolValue(v *bool) bool

func BuildChanges

func BuildChanges(a, e, changes interface{}) bool

BuildChanges compares the values of a & e, and populates differences into changes, except that if a value is nil in e, the corresponding value in a is ignored. a, e and changes must all be of the same type a is the actual object found, e is the expected value Note that the ignore-nil-in-e logic therefore implements the idea that nil value in e means "don't care" If a is nil, all the non-nil values in e will be copied over to changes, because every field in e must be applied

func BuildTimestampString

func BuildTimestampString() string

func CannotChangeField

func CannotChangeField(key string) error

func CopyResource

func CopyResource(dest io.Writer, r Resource) (int64, error)

func DebugAsJsonString

func DebugAsJsonString(v interface{}) string

func DebugAsJsonStringIndent

func DebugAsJsonStringIndent(v interface{}) string

func DebugPrint

func DebugPrint(o interface{}) string

func DefaultDeltaRunMethod

func DefaultDeltaRunMethod(e Task, c *Context) error

DefaultDeltaRunMethod implements the standard change-based run procedure: find the existing item; compare properties; call render with (actual, expected, changes)

func DownloadURL

func DownloadURL(url string, dest string, hash *hashing.Hash) (*hashing.Hash, error)

func EnsureFileMode

func EnsureFileMode(destPath string, fileMode os.FileMode) (bool, error)

func EnsureFileOwner

func EnsureFileOwner(destPath string, owner string, groupName string) (bool, error)

func FileModeToString

func FileModeToString(mode os.FileMode) string

func FindTaskDependencies

func FindTaskDependencies(tasks map[string]Task) map[string][]string

FindTaskDependencies returns a map from each task's key to the discovered list of dependencies

func IdForTask

func IdForTask(taskMap map[string]Task, t Task) string

func Int

func Int(v int) *int

func Int64

func Int64(v int64) *int64

func Int64Value

func Int64Value(v *int64) int64

func IntValue

func IntValue(v *int) int

func IsNilOrEmpty

func IsNilOrEmpty(s *string) bool

func ParseFileMode

func ParseFileMode(s string, defaultMode os.FileMode) (os.FileMode, error)

func RequiredField

func RequiredField(key string) error

func ResourceAsBytes

func ResourceAsBytes(r Resource) ([]byte, error)

func ResourceAsString

func ResourceAsString(r Resource) (string, error)

func ResourcesMatch

func ResourcesMatch(a, b Resource) (bool, error)

func SafeClose

func SafeClose(r io.Reader)

func String

func String(s string) *string

func StringValue

func StringValue(s *string) string

func TaskAsString

func TaskAsString(t Task) string

TaskAsString renders the task for debug output TODO: Use reflection to make this cleaner: don't recurse into tasks - print their names instead also print resources in a cleaner way (use the resource source information?)

func Uint64Value

func Uint64Value(v *uint64) uint64

func ValueAsString

func ValueAsString(value reflect.Value) string

asString returns a human-readable string representation of the passed value

func WriteFile

func WriteFile(destPath string, contents Resource, fileMode os.FileMode, dirMode os.FileMode) error

Types

type AssetStore

type AssetStore struct {
	// contains filtered or unexported fields
}

func NewAssetStore

func NewAssetStore(cacheDir string) *AssetStore

func (*AssetStore) Add

func (a *AssetStore) Add(id string) error

Add an asset into the store, in one of the recognized formats (see Assets in types package)

func (*AssetStore) Find

func (a *AssetStore) Find(key string, assetPath string) (Resource, error)

type BytesResource

type BytesResource struct {
	// contains filtered or unexported fields
}

func NewBytesResource

func NewBytesResource(data []byte) *BytesResource

func (*BytesResource) Open

func (r *BytesResource) Open() (io.Reader, error)

type CAStore

type CAStore interface {
	// Cert returns the primary specified certificate
	Cert(name string) (*Certificate, error)
	// CertificatePool returns all active certificates with the specified id
	CertificatePool(name string) (*CertificatePool, error)
	PrivateKey(name string) (*PrivateKey, error)

	FindCert(name string) (*Certificate, error)
	FindPrivateKey(name string) (*PrivateKey, error)

	CreateKeypair(name string, template *x509.Certificate) (*Certificate, *PrivateKey, error)

	// List will list all the items, but will not fetch the data
	List() ([]*KeystoreItem, error)

	// VFSPath returns the path where the CAStore is stored
	VFSPath() vfs.Path

	// AddCert adds an alternative certificate to the pool (primarily useful for CAs)
	AddCert(name string, cert *Certificate) error

	// AddSSHPublicKey adds an SSH public key
	AddSSHPublicKey(name string, data []byte) error

	// FindSSHPublicKeys retrieves the SSH public keys with the specific name
	FindSSHPublicKeys(name string) ([]*KeystoreItem, error)

	// DeleteSecret will delete the specified item
	DeleteSecret(item *KeystoreItem) error
}

func NewVFSCAStore

func NewVFSCAStore(basedir vfs.Path) CAStore

type Certificate

type Certificate struct {
	Subject pkix.Name
	IsCA    bool

	Certificate *x509.Certificate
	PublicKey   crypto.PublicKey
}

func LoadPEMCertificate

func LoadPEMCertificate(pemData []byte) (*Certificate, error)

func SignNewCertificate

func SignNewCertificate(privateKey *PrivateKey, template *x509.Certificate, signer *x509.Certificate, signerPrivateKey *PrivateKey) (*Certificate, error)

func (*Certificate) AsString

func (c *Certificate) AsString() (string, error)

func (*Certificate) MarshalJSON

func (c *Certificate) MarshalJSON() ([]byte, error)

func (*Certificate) UnmarshalJSON

func (c *Certificate) UnmarshalJSON(b []byte) error

func (*Certificate) WriteTo

func (c *Certificate) WriteTo(w io.Writer) (int64, error)

type CertificatePool

type CertificatePool struct {
	Secondary []*Certificate
	Primary   *Certificate
}

func (*CertificatePool) AsString

func (c *CertificatePool) AsString() (string, error)

type Cloud

type Cloud interface {
	ProviderID() CloudProviderID

	FindDNSHostedZone(dnsName string) (string, error)

	DNS() (dnsprovider.Interface, error)
}

type CloudProviderID

type CloudProviderID string
const CloudProviderAWS CloudProviderID = "aws"
const CloudProviderGCE CloudProviderID = "gce"

func GuessCloudForZone

func GuessCloudForZone(zone string) (CloudProviderID, bool)

GuessCloudForZone tries to infer the cloudprovider from the zone name

type CompareWithID

type CompareWithID interface {
	CompareWithID() *string
}

CompareWithID indicates that the value should be compared by the returned ID value (instead of a deep comparison) Most Tasks implement this, because typically when a Task references another task, it only is concerned with being linked to that task, not the values of the task. For example, when an instance is linked to a disk, it cares that the disk is attached to that instance, not the size or speed of the disk.

type Context

type Context struct {
	Tmpdir string

	Target            Target
	Cloud             Cloud
	CAStore           CAStore
	SecretStore       SecretStore
	ClusterConfigBase vfs.Path

	CheckExisting bool
	// contains filtered or unexported fields
}

func NewContext

func NewContext(target Target, cloud Cloud, castore CAStore, secretStore SecretStore, clusterConfigBase vfs.Path, checkExisting bool, tasks map[string]Task) (*Context, error)

func (*Context) AllTasks

func (c *Context) AllTasks() map[string]Task

func (*Context) Close

func (c *Context) Close()

func (*Context) NewTempDir

func (c *Context) NewTempDir(prefix string) (string, error)

func (*Context) Render

func (c *Context) Render(a, e, changes Task) error

func (*Context) RunTasks

func (c *Context) RunTasks(maxAttemptsWithNoProgress int) error

type Deletion

type Deletion interface {
	Delete(target Target) error

	TaskName() string
	Item() string
}

type DryRunTarget

type DryRunTarget struct {
	// contains filtered or unexported fields
}

DryRunTarget is a special Target that does not execute anything, but instead tracks all changes. By running against a DryRunTarget, a list of changes that would be made can be easily collected, without any special support from the Tasks.

func NewDryRunTarget

func NewDryRunTarget(out io.Writer) *DryRunTarget

func (*DryRunTarget) Delete

func (t *DryRunTarget) Delete(deletion Deletion) error

func (*DryRunTarget) Finish

func (t *DryRunTarget) Finish(taskMap map[string]Task) error

Finish is called at the end of a run, and prints a list of changes to the configured Writer

func (*DryRunTarget) HasChanges

func (t *DryRunTarget) HasChanges() bool

HasChanges returns true iff any changes would have been made

func (*DryRunTarget) PrintReport

func (t *DryRunTarget) PrintReport(taskMap map[string]Task, out io.Writer) error

func (*DryRunTarget) Render

func (t *DryRunTarget) Render(a, e, changes Task) error

type FileResource

type FileResource struct {
	Path string
}

func NewFileResource

func NewFileResource(path string) *FileResource

func (*FileResource) Open

func (r *FileResource) Open() (io.Reader, error)

type Group

type Group struct {
	Name string
	Gid  int
}

func LookupGroup

func LookupGroup(name string) (*Group, error)

func LookupGroupById

func LookupGroupById(gid int) (*Group, error)

type HasAddress

type HasAddress interface {
	// FindAddress returns the address associated with the implementor.  If there is no address, returns (nil, nil)
	FindAddress(context *Context) (*string, error)
}

HasAddress is implemented by elastic/floating IP addresses, to expose the address For example, this is used so that the master SSL certificate can be configured with the dynamically allocated IP

type HasCheckExisting

type HasCheckExisting interface {
	CheckExisting(c *Context) bool
}

type HasDependencies

type HasDependencies interface {
	GetDependencies(tasks map[string]Task) []Task
}

type HasName

type HasName interface {
	GetName() *string
	SetName(name string)
}

HasName indicates that the task has a Name

type HasSource

type HasSource interface {
	GetSource() *Source
}

type KeystoreItem

type KeystoreItem struct {
	Type string
	Name string
	Id   string
	Data []byte
}

type PrivateKey

type PrivateKey struct {
	Key crypto.PrivateKey
}

func ParsePEMPrivateKey

func ParsePEMPrivateKey(data []byte) (*PrivateKey, error)

func (*PrivateKey) AsString

func (c *PrivateKey) AsString() (string, error)

func (*PrivateKey) MarshalJSON

func (k *PrivateKey) MarshalJSON() ([]byte, error)

func (*PrivateKey) UnmarshalJSON

func (k *PrivateKey) UnmarshalJSON(b []byte) (err error)

func (*PrivateKey) WriteTo

func (k *PrivateKey) WriteTo(w io.Writer) (int64, error)

type ProducesDeletions

type ProducesDeletions interface {
	FindDeletions(*Context) ([]Deletion, error)
}

type Resource

type Resource interface {
	Open() (io.Reader, error)
}

type ResourceHolder

type ResourceHolder struct {
	Name     string
	Resource Resource
}

func WrapResource

func WrapResource(r Resource) *ResourceHolder

func (*ResourceHolder) AsBytes

func (o *ResourceHolder) AsBytes() ([]byte, error)

func (*ResourceHolder) AsString

func (o *ResourceHolder) AsString() (string, error)

func (*ResourceHolder) Open

func (o *ResourceHolder) Open() (io.Reader, error)

func (*ResourceHolder) UnmarshalJSON

func (o *ResourceHolder) UnmarshalJSON(data []byte) error

func (*ResourceHolder) Unwrap

func (o *ResourceHolder) Unwrap() Resource

type Secret

type Secret struct {
	Data []byte
}

func CreateSecret

func CreateSecret() (*Secret, error)

func (*Secret) AsString

func (s *Secret) AsString() (string, error)

type SecretStore

type SecretStore interface {
	// Get a secret.  Returns an error if not found
	Secret(id string) (*Secret, error)
	// Find a secret, if exists.  Returns nil,nil if not found
	FindSecret(id string) (*Secret, error)
	// Create or replace a secret
	GetOrCreateSecret(id string, secret *Secret) (current *Secret, created bool, err error)
	// Lists the ids of all known secrets
	ListSecrets() ([]string, error)

	// VFSPath returns the path where the SecretStore is stored
	VFSPath() vfs.Path
}

type Source

type Source struct {
	Parent             *Source
	URL                string
	Hash               *hashing.Hash
	ExtractFromArchive string
}

func (*Source) Key

func (s *Source) Key() string

Builds a unique key for this source

func (*Source) String

func (s *Source) String() string

type StringResource

type StringResource struct {
	// contains filtered or unexported fields
}

func NewStringResource

func NewStringResource(s string) *StringResource

func (*StringResource) Open

func (s *StringResource) Open() (io.Reader, error)

func (*StringResource) WriteTo

func (s *StringResource) WriteTo(out io.Writer) error

type Target

type Target interface {
	// Lifecycle methods, called by the driver
	Finish(taskMap map[string]Task) error
}

type Task

type Task interface {
	Run(*Context) error
}

type TemplateResource

type TemplateResource interface {
	Resource
	Curry(args []string) TemplateResource
}

type User

type User struct {
	Name    string
	Uid     int
	Gid     int
	Comment string
	Home    string
	Shell   string
}

func LookupUser

func LookupUser(name string) (*User, error)

func LookupUserById

func LookupUserById(uid int) (*User, error)

type VFSCAStore

type VFSCAStore struct {
	DryRun bool
	// contains filtered or unexported fields
}

func (*VFSCAStore) AddCert

func (c *VFSCAStore) AddCert(id string, cert *Certificate) error

func (*VFSCAStore) AddSSHPublicKey

func (c *VFSCAStore) AddSSHPublicKey(name string, pubkey []byte) error

AddSSHPublicKey stores an SSH public key

func (*VFSCAStore) Cert

func (c *VFSCAStore) Cert(id string) (*Certificate, error)

func (*VFSCAStore) CertificatePool

func (c *VFSCAStore) CertificatePool(id string) (*CertificatePool, error)

func (*VFSCAStore) CreateKeypair

func (c *VFSCAStore) CreateKeypair(id string, template *x509.Certificate) (*Certificate, *PrivateKey, error)

func (*VFSCAStore) CreatePrivateKey

func (c *VFSCAStore) CreatePrivateKey(id string, serial *big.Int) (*PrivateKey, error)

func (*VFSCAStore) DeleteSecret

func (c *VFSCAStore) DeleteSecret(item *KeystoreItem) error

func (*VFSCAStore) FindCert

func (c *VFSCAStore) FindCert(id string) (*Certificate, error)

func (*VFSCAStore) FindCertificatePool

func (c *VFSCAStore) FindCertificatePool(id string) (*CertificatePool, error)

func (*VFSCAStore) FindPrivateKey

func (c *VFSCAStore) FindPrivateKey(id string) (*PrivateKey, error)

func (*VFSCAStore) FindSSHPublicKeys

func (c *VFSCAStore) FindSSHPublicKeys(name string) ([]*KeystoreItem, error)

func (*VFSCAStore) IssueCert

func (c *VFSCAStore) IssueCert(id string, serial *big.Int, privateKey *PrivateKey, template *x509.Certificate) (*Certificate, error)

func (*VFSCAStore) List

func (c *VFSCAStore) List() ([]*KeystoreItem, error)

func (*VFSCAStore) PrivateKey

func (c *VFSCAStore) PrivateKey(id string) (*PrivateKey, error)

func (*VFSCAStore) VFSPath

func (s *VFSCAStore) VFSPath() vfs.Path

type VFSResource

type VFSResource struct {
	Path vfs.Path
}

func NewVFSResource

func NewVFSResource(path vfs.Path) *VFSResource

func (*VFSResource) Open

func (r *VFSResource) Open() (io.Reader, error)

Directories

Path Synopsis
gce

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL