environment

package
v0.11.10 Latest Latest
Warning

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

Go to latest
Published: May 15, 2019 License: Apache-2.0 Imports: 11 Imported by: 22

Documentation

Overview

Package environment provides... environments. They're like roles, but more so, except without run lists. They're a convenient way to share many attributes and cookbook version constraints among many servers.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func DoesExist added in v0.11.4

func DoesExist(environmentName string) (bool, util.Gerror)

DoesExist checks if the environment in question exists or not

func GetList

func GetList() []string

GetList gets a list of all environments on this server.

func MakeDefaultEnvironment

func MakeDefaultEnvironment()

MakeDefaultEnvironment creates the default environment on startup.

Types

type ChefEnvironment

type ChefEnvironment struct {
	Name             string                 `json:"name"`
	ChefType         string                 `json:"chef_type"`
	JSONClass        string                 `json:"json_class"`
	Description      string                 `json:"description"`
	Default          map[string]interface{} `json:"default_attributes"`
	Override         map[string]interface{} `json:"override_attributes"`
	CookbookVersions map[string]string      `json:"cookbook_versions"`
}

ChefEnvironment is a collection of attributes and cookbook versions for organizing how nodes are deployed.

func AllEnvironments added in v0.5.2

func AllEnvironments() []*ChefEnvironment

AllEnvironments returns a slice of all environments on this server.

func Get

func Get(envName string) (*ChefEnvironment, util.Gerror)

Get an environment.

func GetMulti added in v0.10.0

func GetMulti(envNames []string) ([]*ChefEnvironment, util.Gerror)

GetMulti gets multiple environmets from a given slice of environment names.

func New

func New(name string) (*ChefEnvironment, util.Gerror)

New creates a new environment, returning an error if the environment already exists or you try to create an environment named "_default".

func NewFromJSON added in v0.6.0

func NewFromJSON(jsonEnv map[string]interface{}) (*ChefEnvironment, util.Gerror)

NewFromJSON creates a new environment from JSON uploaded to the server.

func (*ChefEnvironment) AllCookbookHash

func (e *ChefEnvironment) AllCookbookHash(numVersions interface{}) map[string]interface{}

AllCookbookHash returns a hash of the cookbooks and their versions available to this environment.

func (*ChefEnvironment) Delete

func (e *ChefEnvironment) Delete() error

Delete the environment, returning an error if you try to delete the "_default" environment.

func (*ChefEnvironment) DocID added in v0.6.0

func (e *ChefEnvironment) DocID() string

DocID returns the environment's name.

func (*ChefEnvironment) Flatten

func (e *ChefEnvironment) Flatten() map[string]interface{}

Flatten the environment so it's suitable for indexing.

func (*ChefEnvironment) GetName

func (e *ChefEnvironment) GetName() string

GetName returns the environment's name.

func (*ChefEnvironment) Index

func (e *ChefEnvironment) Index() string

Index returns the environment's type so the indexer knows where it should go.

func (*ChefEnvironment) RecipeList

func (e *ChefEnvironment) RecipeList() []string

RecipeList gets a list of recipes available to this environment.

func (*ChefEnvironment) Save

func (e *ChefEnvironment) Save() util.Gerror

Save the environment. Returns an error if you try to save the "_default" environment.

func (*ChefEnvironment) URLType

func (e *ChefEnvironment) URLType() string

URLType returns the base of an environment's URL.

func (*ChefEnvironment) UpdateFromJSON added in v0.6.0

func (e *ChefEnvironment) UpdateFromJSON(jsonEnv map[string]interface{}) util.Gerror

UpdateFromJSON updates an existing environment from JSON uploaded to the server.

Jump to

Keyboard shortcuts

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