Documentation ¶
Index ¶
- Constants
- Variables
- func NewStageTimer(stage string) *metrics.Timer
- func ObserveRelease(start time.Time, success bool, releaseType ReleaseType, ...)
- func PrintResults(out io.Writer, results Result, verbosity int)
- type Automated
- func (a *Automated) Add(service flux.ResourceID, container resource.Container, image image.Ref)
- func (a *Automated) CalculateRelease(rc ReleaseContext, logger log.Logger) ([]*ControllerUpdate, Result, error)
- func (a *Automated) CommitMessage(result Result) string
- func (a *Automated) ReleaseKind() ReleaseKind
- func (a *Automated) ReleaseType() ReleaseType
- type Cause
- type Change
- type ContainerUpdate
- type ControllerFilter
- type ControllerResult
- type ControllerUpdate
- type ControllerUpdateStatus
- type ExcludeFilter
- type IgnoreFilter
- type ImageInfos
- type ImageRepos
- type ImageSpec
- type IncludeFilter
- type LockedFilter
- type ManualSync
- type Menu
- type ReleaseContainersSpec
- func (s ReleaseContainersSpec) CalculateRelease(rc ReleaseContext, logger log.Logger) ([]*ControllerUpdate, Result, error)
- func (s ReleaseContainersSpec) CommitMessage(result Result) string
- func (s ReleaseContainersSpec) ReleaseKind() ReleaseKind
- func (s ReleaseContainersSpec) ReleaseType() ReleaseType
- type ReleaseContext
- type ReleaseImageSpec
- type ReleaseKind
- type ReleaseType
- type ResourceSpec
- type Result
- type SortedImageInfos
- type Spec
- type SpecificImageFilter
Constants ¶
const ( Locked = "locked" Ignore = "ignore" NotIncluded = "not included" Excluded = "excluded" DifferentImage = "a different image" NotInCluster = "not running in cluster" NotInRepo = "not found in repository" ImageNotFound = "cannot find one or more images" ImageUpToDate = "image(s) up to date" DoesNotUseImage = "does not use image(s)" ContainerNotFound = "container(s) not found: %s" ContainerTagMismatch = "container(s) tag mismatch: %s" )
const ( ResourceSpecAll = ResourceSpec("<all>") ImageSpecLatest = ImageSpec("<all latest>") )
const ( Images = "image" Policy = "policy" Auto = "auto" Sync = "sync" Containers = "containers" )
const UserAutomated = "<automated>"
Variables ¶
var (
ErrInvalidReleaseKind = errors.New("invalid release kind")
)
Functions ¶
func NewStageTimer ¶
func ObserveRelease ¶
func ObserveRelease(start time.Time, success bool, releaseType ReleaseType, releaseKind ReleaseKind)
func PrintResults ¶
PrintResults outputs a result set to the `io.Writer` provided, at the given level of verbosity:
- 2 = include skipped and ignored resources
- 1 = include skipped resources, exclude ignored resources
- 0 = exclude skipped and ignored resources
Types ¶
type Automated ¶
type Automated struct {
Changes []Change
}
func (*Automated) CalculateRelease ¶
func (a *Automated) CalculateRelease(rc ReleaseContext, logger log.Logger) ([]*ControllerUpdate, Result, error)
func (*Automated) CommitMessage ¶
func (*Automated) ReleaseKind ¶
func (a *Automated) ReleaseKind() ReleaseKind
func (*Automated) ReleaseType ¶
func (a *Automated) ReleaseType() ReleaseType
type ContainerUpdate ¶
type ControllerFilter ¶
type ControllerFilter interface {
Filter(ControllerUpdate) ControllerResult
}
type ControllerResult ¶
type ControllerResult struct { Status ControllerUpdateStatus // summary of what happened, e.g., "incomplete", "ignored", "success" Error string `json:",omitempty"` // error if there was one finding the service (e.g., it doesn't exist in repo) PerContainer []ContainerUpdate // what happened with each container }
type ControllerUpdate ¶
type ControllerUpdate struct { ResourceID flux.ResourceID Controller cluster.Controller Resource resource.Workload ManifestPath string Updates []ContainerUpdate }
func (*ControllerUpdate) Filter ¶
func (s *ControllerUpdate) Filter(filters ...ControllerFilter) ControllerResult
type ControllerUpdateStatus ¶
type ControllerUpdateStatus string
const ( ReleaseStatusSuccess ControllerUpdateStatus = "success" ReleaseStatusFailed ControllerUpdateStatus = "failed" ReleaseStatusSkipped ControllerUpdateStatus = "skipped" ReleaseStatusIgnored ControllerUpdateStatus = "ignored" ReleaseStatusUnknown ControllerUpdateStatus = "unknown" )
type ExcludeFilter ¶
type ExcludeFilter struct {
IDs []flux.ResourceID
}
func (*ExcludeFilter) Filter ¶
func (f *ExcludeFilter) Filter(u ControllerUpdate) ControllerResult
type IgnoreFilter ¶
type IgnoreFilter struct { }
func (*IgnoreFilter) Filter ¶
func (f *IgnoreFilter) Filter(u ControllerUpdate) ControllerResult
type ImageInfos ¶
ImageInfos is a list of image.Info which can be filtered.
func (ImageInfos) Filter ¶
func (ii ImageInfos) Filter(pattern policy.Pattern) ImageInfos
Filter returns only the images that match the pattern, in a new list.
func (ImageInfos) FilterAndSort ¶
func (ii ImageInfos) FilterAndSort(pattern policy.Pattern) SortedImageInfos
FilterAndSort is an optimized helper function to compose filtering and sorting.
func (ImageInfos) FindWithRef ¶
func (ii ImageInfos) FindWithRef(ref image.Ref) image.Info
FindWithRef returns image.Info given an image ref. If the image cannot be found, it returns the image.Info with the ID provided.
func (ImageInfos) Sort ¶
func (ii ImageInfos) Sort(pattern policy.Pattern) SortedImageInfos
Sort orders the images according to the pattern order in a new list.
type ImageRepos ¶
type ImageRepos struct {
// contains filtered or unexported fields
}
ImageRepos contains a map of image repositories to their images
func FetchImageRepos ¶
FetchImageRepos finds all the known image metadata for containers in the controllers given.
func (ImageRepos) GetRepoImages ¶
func (r ImageRepos) GetRepoImages(repo image.Name) ImageInfos
GetRepoImages returns image.Info entries for all the images in the named image repository.
type ImageSpec ¶
type ImageSpec string
ImageSpec is an ImageID, or "<all latest>" (update all containers to the latest available).
func ImageSpecFromRef ¶
func ParseImageSpec ¶
type IncludeFilter ¶
type IncludeFilter struct {
IDs []flux.ResourceID
}
func (*IncludeFilter) Filter ¶
func (f *IncludeFilter) Filter(u ControllerUpdate) ControllerResult
type LockedFilter ¶
type LockedFilter struct { }
func (*LockedFilter) Filter ¶
func (f *LockedFilter) Filter(u ControllerUpdate) ControllerResult
type ManualSync ¶
type ManualSync struct { }
type Menu ¶
type Menu struct {
// contains filtered or unexported fields
}
Menu presents a list of controllers which can be interacted with.
func NewMenu ¶
NewMenu creates a menu printer that outputs a result set to the `io.Writer` provided, at the given level of verbosity:
- 2 = include skipped and ignored resources
- 1 = include skipped resources, exclude ignored resources
- 0 = exclude skipped and ignored resources
It can print a one time listing with `Print()` or then enter interactive mode with `Run()`.
func (*Menu) Run ¶
func (m *Menu) Run() (map[flux.ResourceID][]ContainerUpdate, error)
Run starts the interactive menu mode.
type ReleaseContainersSpec ¶
type ReleaseContainersSpec struct { Kind ReleaseKind ContainerSpecs map[flux.ResourceID][]ContainerUpdate SkipMismatches bool Force bool }
ReleaseContainersSpec defines the spec for a `containers` manifest update.
func (ReleaseContainersSpec) CalculateRelease ¶
func (s ReleaseContainersSpec) CalculateRelease(rc ReleaseContext, logger log.Logger) ([]*ControllerUpdate, Result, error)
CalculateRelease computes required controller updates to satisfy this specification. It returns an error if any spec calculation fails unless `SkipMismatches` is true.
func (ReleaseContainersSpec) CommitMessage ¶
func (s ReleaseContainersSpec) CommitMessage(result Result) string
func (ReleaseContainersSpec) ReleaseKind ¶
func (s ReleaseContainersSpec) ReleaseKind() ReleaseKind
func (ReleaseContainersSpec) ReleaseType ¶
func (s ReleaseContainersSpec) ReleaseType() ReleaseType
type ReleaseContext ¶
type ReleaseContext interface { SelectServices(Result, []ControllerFilter, []ControllerFilter) ([]*ControllerUpdate, error) Registry() registry.Registry }
type ReleaseImageSpec ¶
type ReleaseImageSpec struct { ServiceSpecs []ResourceSpec ImageSpec ImageSpec Kind ReleaseKind Excludes []flux.ResourceID Force bool }
NB: these get sent from fluxctl, so we have to maintain the json format of this. Eugh.
func (ReleaseImageSpec) CalculateRelease ¶
func (s ReleaseImageSpec) CalculateRelease(rc ReleaseContext, logger log.Logger) ([]*ControllerUpdate, Result, error)
func (ReleaseImageSpec) CommitMessage ¶
func (s ReleaseImageSpec) CommitMessage(result Result) string
func (ReleaseImageSpec) ReleaseKind ¶
func (s ReleaseImageSpec) ReleaseKind() ReleaseKind
func (ReleaseImageSpec) ReleaseType ¶
func (s ReleaseImageSpec) ReleaseType() ReleaseType
ReleaseType gives a one-word description of the release, mainly useful for labelling metrics or log messages.
type ReleaseKind ¶
type ReleaseKind string
ReleaseKind says whether a release is to be planned only, or planned then executed
const ( ReleaseKindPlan ReleaseKind = "plan" ReleaseKindExecute ReleaseKind = "execute" )
func ParseReleaseKind ¶
func ParseReleaseKind(s string) (ReleaseKind, error)
type ReleaseType ¶
type ReleaseType string
type ResourceSpec ¶
type ResourceSpec string // ResourceID or "<all>"
func MakeResourceSpec ¶
func MakeResourceSpec(id flux.ResourceID) ResourceSpec
func ParseResourceSpec ¶
func ParseResourceSpec(s string) (ResourceSpec, error)
func (ResourceSpec) AsID ¶
func (s ResourceSpec) AsID() (flux.ResourceID, error)
func (ResourceSpec) String ¶
func (s ResourceSpec) String() string
type Result ¶
type Result map[flux.ResourceID]ControllerResult
func (Result) AffectedResources ¶
func (r Result) AffectedResources() flux.ResourceIDs
func (Result) ChangedImages ¶
func (Result) ServiceIDs ¶
type SortedImageInfos ¶
SortedImageInfos is a list of sorted image.Info
func (SortedImageInfos) Filter ¶
func (is SortedImageInfos) Filter(pattern policy.Pattern) SortedImageInfos
Filter returns only the images that match the pattern, in a new list.
func (SortedImageInfos) Latest ¶
func (is SortedImageInfos) Latest() (image.Info, bool)
Latest returns the latest image from SortedImageInfos. If no such image exists, returns a zero value and `false`, and the caller can decide whether that's an error or not.
func (SortedImageInfos) Sort ¶
func (is SortedImageInfos) Sort(pattern policy.Pattern) SortedImageInfos
Sort orders the images according to the pattern order in a new list.
type Spec ¶
type Spec struct { Type string `json:"type"` Cause Cause `json:"cause"` Spec interface{} `json:"spec"` }
A tagged union for all (both) kinds of update. The type is just so we know how to decode the rest of the struct.
func (*Spec) UnmarshalJSON ¶
type SpecificImageFilter ¶
func (*SpecificImageFilter) Filter ¶
func (f *SpecificImageFilter) Filter(u ControllerUpdate) ControllerResult