Documentation ¶
Index ¶
- Constants
- func IsInvalidConfig(err error) bool
- func IsNotFound(err error) bool
- func IsWait(err error) bool
- func IsWrongType(err error) bool
- type Config
- type Patch
- type ReleaseState
- type Resource
- func (r *Resource) ApplyCreateChange(ctx context.Context, obj, createChange interface{}) error
- func (r *Resource) ApplyDeleteChange(ctx context.Context, obj, deleteChange interface{}) error
- func (r *Resource) ApplyUpdateChange(ctx context.Context, obj, updateChange interface{}) error
- func (r *Resource) GetCurrentState(ctx context.Context, obj interface{}) (interface{}, error)
- func (r *Resource) GetDesiredState(ctx context.Context, obj interface{}) (interface{}, error)
- func (r *Resource) Name() string
- func (r *Resource) NewDeletePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*crud.Patch, error)
- func (r *Resource) NewUpdatePatch(ctx context.Context, obj, currentState, desiredState interface{}) (*crud.Patch, error)
Constants ¶
View Source
const (
// Name is the identifier of the resource.
Name = "release"
)
Variables ¶
This section is empty.
Functions ¶
func IsInvalidConfig ¶
IsInvalidConfig asserts invalidConfigError.
Types ¶
type Config ¶
type Config struct { // Dependencies. Fs afero.Fs CtrlClient client.Client HelmClients *clientpair.ClientPair K8sClient kubernetes.Interface Logger micrologger.Logger // Settings. K8sWaitTimeout time.Duration MaxRollback int TillerNamespace string }
Config represents the configuration used to create a new release resource.
type ReleaseState ¶
type ReleaseState struct { // Name is the name of the Helm release when the chart is deployed. // e.g. chart-operator Name string // Status is the status of the Helm release when the chart is deployed. // e.g. DEPLOYED Status string // ValuesMD5Checksum is the MD5 checksum of the values YAML. It is used for // comparison since it is more reliable than using the values returned by // helmclient.GetReleaseContent. ValuesMD5Checksum string // Values are any values that have been set when the Helm Chart was // installed. Values map[string]interface{} // Version is the version of the Helm Chart to be deployed. // e.g. 0.1.2 Version string }
ReleaseState holds the state of the Helm release to be reconciled.
type Resource ¶
type Resource struct {
// contains filtered or unexported fields
}
Resource implements the chart resource.
func (*Resource) ApplyCreateChange ¶
func (*Resource) ApplyDeleteChange ¶
func (*Resource) ApplyUpdateChange ¶
func (*Resource) GetCurrentState ¶
func (*Resource) GetDesiredState ¶
func (*Resource) NewDeletePatch ¶
Click to show internal directories.
Click to hide internal directories.