Documentation ¶
Index ¶
- Constants
- func IsCoreAction(value Action) bool
- func OutputAppliesTo(action string, output bundle.Output) bool
- type Action
- type BundleOutput
- type Config
- func (c *Config) GetBundlesCache() (string, error)
- func (c *Config) GetClaimsDir() (string, error)
- func (c *Config) GetCredentialPath(name string) (string, error)
- func (c *Config) GetCredentialsDir() (string, error)
- func (c *Config) GetHomeDir() (string, error)
- func (c *Config) GetMixinDir(mixin string) (string, error)
- func (c *Config) GetMixinPath(mixin string) (string, error)
- func (c *Config) GetMixinRuntimePath(mixin string) (string, error)
- func (c *Config) GetMixinsDir() (string, error)
- func (c *Config) GetOutputsDir() (string, error)
- func (c *Config) GetPorterPath() (string, error)
- func (c *Config) GetPorterRuntimePath() (string, error)
- func (c *Config) LoadManifest() error
- func (c *Config) LoadManifestFrom(file string) error
- func (c *Config) ReadBundleOutput(name string, claim string) (*Output, error)
- func (c *Config) ReadManifest(path string) (*Manifest, error)
- func (c *Config) SetHomeDir(home string)
- type CredentialDefinition
- type CustomActionDefinition
- type Dependency
- type Location
- type Manifest
- type MappedImage
- type Output
- type OutputDefinition
- type Outputs
- type ParameterDefinition
- type RuntimeManifest
- type Step
- type StepOutput
- type Steps
- type TestConfig
Constants ¶
const ( // Name is the file name of the porter configuration file. Name = "porter.yaml" // EnvHOME is the name of the environment variable containing the porter home directory path. EnvHOME = "PORTER_HOME" // EnvBundleName is the name of the environment variable containing the name of the bundle. EnvBundleName = "CNAB_BUNDLE_NAME" // EnvClaimName is the name of the environment variable containing the name of the claim. EnvClaimName = "CNAB_INSTALLATION_NAME" // EnvACTION is the request EnvACTION = "CNAB_ACTION" // EnvDEBUG is a custom porter parameter that signals that --debug flag has been passed through from the client to the runtime. EnvDEBUG = "PORTER_DEBUG" CustomBundleKey = "sh.porter" // BundleOutputsDir is the directory where outputs are expected to be placed // during the execution of a bundle action. BundleOutputsDir = "/cnab/app/outputs" )
Variables ¶
This section is empty.
Functions ¶
func IsCoreAction ¶
IsCoreAction determines if the value is a core action from the CNAB spec.
func OutputAppliesTo ¶
TODO: remove in favor of cnab-go logic: https://github.com/deislabs/cnab-go/pull/99
Types ¶
type BundleOutput ¶
type Config ¶
type Config struct { *context.Context Manifest *Manifest ManifestPath string // contains filtered or unexported fields }
func (*Config) GetBundlesCache ¶
GetBundlesDir locates the bundle cache from the porter home directory.
func (*Config) GetClaimsDir ¶
func (*Config) GetCredentialsDir ¶
func (*Config) GetHomeDir ¶
GetHomeDir determines the absolute path to the porter home directory.
func (*Config) GetMixinRuntimePath ¶
func (*Config) GetMixinsDir ¶
func (*Config) GetOutputsDir ¶
func (*Config) GetPorterPath ¶
func (*Config) GetPorterRuntimePath ¶
func (*Config) LoadManifest ¶
func (*Config) LoadManifestFrom ¶
func (*Config) ReadBundleOutput ¶
ReadBundleOutput reads the provided output associated with the provided bundle, via the filesystem provided by the config.Config object, returning the output's full Output representation
func (*Config) ReadManifest ¶
ReadManifest determines if specified path is a URL or a filepath. After reading the data in the path it returns a Manifest and any errors
func (*Config) SetHomeDir ¶
type CredentialDefinition ¶
type CustomActionDefinition ¶
type Dependency ¶
type Dependency struct { Tag string `yaml:"tag"` Versions []string `yaml:"versions"` AllowPrereleases bool `yaml:"prereleases"` Parameters map[string]string `yaml:"parameters,omitempty"` }
func (*Dependency) Validate ¶
func (d *Dependency) Validate() error
type Location ¶
type Location struct { Path string `yaml:"path,omitempty"` EnvironmentVariable string `yaml:"env,omitempty"` }
TODO: use cnab-go's bundle.Location instead, once yaml tags have been added Location represents a Parameter or Credential location in an InvocationImage
type Manifest ¶
type Manifest struct { Name string `yaml:"name,omitempty"` Description string `yaml:"description,omitempty"` Version string `yaml:"version,omitempty"` // Image is the name of the invocation image in the format REGISTRY/NAME:TAG Image string `yaml:"invocationImage,omitempty"` // BundleTag is the name of the bundle in the format REGISTRY/NAME:TAG BundleTag string `yaml:"tag"` // Dockerfile is the relative path to the Dockerfile template for the invocation image Dockerfile string `yaml:"dockerfile,omitempty"` Mixins []string `yaml:"mixins,omitempty"` Install Steps `yaml:"install"` Uninstall Steps `yaml:"uninstall"` Upgrade Steps `yaml:"upgrade"` CustomActions map[string]Steps `yaml:"-"` CustomActionDefinitions map[string]CustomActionDefinition `yaml:"customActions,omitempty"` Parameters []ParameterDefinition `yaml:"parameters,omitempty"` Credentials []CredentialDefinition `yaml:"credentials,omitempty"` Dependencies map[string]Dependency `yaml:"dependencies,omitempty"` Outputs []OutputDefinition `yaml:"outputs,omitempty"` // ImageMap is a map of images referenced in the bundle. The mappings are mounted as a file at runtime to // /cnab/app/image-map.json. This data is not used by porter or any of the deislabs mixins, so only populate when you // plan on manually using this data in your own scripts. ImageMap map[string]MappedImage `yaml:"imageMap,omitempty"` }
func UnmarshalManifest ¶
type MappedImage ¶
type MappedImage struct { Description string `yaml:"description"` ImageType string `yaml:"imageType"` Image string `yaml:"image"` OriginalImage string `yaml:"originalImage,omitempty"` Digest string `yaml:"digest,omitempty"` Size uint64 `yaml:"size,omitempty"` MediaType string `yaml:"mediaType,omitempty"` Labels map[string]string `yaml:"labels,omitempty"` }
type Output ¶
type Output struct { Name string `json:"name"` Sensitive bool `json:"sensitive"` Type string `json:"type"` Value string `json:"value"` }
Output represents a bundle output
func (*Output) JSONMarshal ¶
JSONMarshal marshals an Output to JSON, returning a byte array or error
type OutputDefinition ¶
type OutputDefinition struct { Name string `yaml:"name"` ApplyTo []string `yaml:"applyTo,omitempty"` Sensitive bool `yaml:"sensitive"` definition.Schema `yaml:",inline"` }
OutputDefinition defines a single output for a CNAB
func (*OutputDefinition) Validate ¶
func (od *OutputDefinition) Validate() error
type ParameterDefinition ¶
type ParameterDefinition struct { Name string `yaml:"name"` Sensitive bool `yaml:"sensitive"` // These fields represent a subset of bundle.Parameter as defined in deislabs/cnab-go, // minus the 'Description' field (definition.Schema's will be used) and `Definition` field ApplyTo []string `yaml:"applyTo,omitempty"` Destination *Location `yaml:"destination,omitempty"` definition.Schema `yaml:",inline"` }
ParameterDefinition defines a single parameter for a CNAB bundle
type RuntimeManifest ¶
type RuntimeManifest struct { *Manifest *context.Context Action Action // contains filtered or unexported fields }
func NewRuntimeManifest ¶
func NewRuntimeManifest(cxt *context.Context, action Action, manifest *Manifest) RuntimeManifest
func (*RuntimeManifest) ApplyStepOutputs ¶
func (m *RuntimeManifest) ApplyStepOutputs(step *Step, assignments map[string]string) error
func (*RuntimeManifest) GetSensitiveValues ¶
func (m *RuntimeManifest) GetSensitiveValues() []string
func (*RuntimeManifest) GetSteps ¶
func (m *RuntimeManifest) GetSteps() Steps
func (*RuntimeManifest) ResolveStep ¶
func (m *RuntimeManifest) ResolveStep(step *Step) error
ResolveStep will walk through the Step's data and resolve any placeholder data using the definitions in the manifest, like parameters or credentials.
func (*RuntimeManifest) Validate ¶
func (m *RuntimeManifest) Validate() error
type Step ¶
type Step struct {
Data map[string]interface{} `yaml:",inline"`
}
func (*Step) GetDescription ¶
GetDescription returns a description of the step. Every step must have this property.
func (*Step) GetMixinName ¶
type StepOutput ¶
type TestConfig ¶
type TestConfig struct { *Config TestContext *context.TestContext }
func NewTestConfig ¶
func NewTestConfig(t *testing.T) *TestConfig
NewTestConfig initializes a configuration suitable for testing, with the output buffered, and an in-memory file system.
func (*TestConfig) SetupIntegrationTest ¶
func (c *TestConfig) SetupIntegrationTest(home string)
InitializePorterHome initializes the filesystem with the supporting files in the PORTER_HOME directory.
func (*TestConfig) SetupPorterHome ¶
func (c *TestConfig) SetupPorterHome()
InitializePorterHome initializes the test filesystem with the supporting files in the PORTER_HOME directory.