Documentation ¶
Index ¶
- func CreateAddonTasks(ctx context.Context, cfg *api.ClusterConfig, ...) (*tasks.TaskTree, *tasks.TaskTree)
- type CreateClientSet
- type Issue
- type Manager
- func (a *Manager) Create(ctx context.Context, addon *api.Addon, waitTimeout time.Duration) error
- func (a *Manager) Delete(ctx context.Context, addon *api.Addon) error
- func (a *Manager) DeleteWithPreserve(ctx context.Context, addon *api.Addon) error
- func (a *Manager) DescribeAllVersions(ctx context.Context, addon *api.Addon) (string, error)
- func (a *Manager) DescribeVersions(ctx context.Context, addon *api.Addon) (string, error)
- func (a *Manager) Get(ctx context.Context, addon *api.Addon) (Summary, error)
- func (a *Manager) GetAll(ctx context.Context) ([]Summary, error)
- func (a *Manager) Update(ctx context.Context, addon *api.Addon, waitTimeout time.Duration) error
- type Remover
- type StackManager
- type Summary
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CreateAddonTasks ¶
Types ¶
type CreateClientSet ¶ added in v0.167.0
type CreateClientSet func() (kubeclient.Interface, error)
CreateClientSet creates a Kubernetes ClientSet.
type Manager ¶
type Manager struct {
// contains filtered or unexported fields
}
func New ¶
func New(clusterConfig *api.ClusterConfig, eksAPI awsapi.EKS, stackManager StackManager, withOIDC bool, oidcManager *iamoidc.OpenIDConnectManager, createClientSet CreateClientSet) (*Manager, error)
func (*Manager) DeleteWithPreserve ¶ added in v0.63.0
func (*Manager) DescribeAllVersions ¶
func (*Manager) DescribeVersions ¶
type Remover ¶ added in v0.161.0
type Remover struct {
// contains filtered or unexported fields
}
func NewRemover ¶ added in v0.161.0
func NewRemover(stackManager StackManager) *Remover
type StackManager ¶
type StackManager interface { CreateStack(ctx context.Context, name string, stack builder.ResourceSetReader, tags, parameters map[string]string, errs chan error) error DeleteStackBySpec(ctx context.Context, s *cfntypes.Stack) (*cfntypes.Stack, error) DeleteStackBySpecSync(ctx context.Context, s *cfntypes.Stack, errs chan error) error DescribeStack(ctx context.Context, i *cfntypes.Stack) (*cfntypes.Stack, error) GetIAMAddonsStacks(ctx context.Context) ([]*cfntypes.Stack, error) UpdateStack(ctx context.Context, options manager.UpdateStackOptions) error }
StackManager manages CloudFormation stacks for addons.
Source Files ¶
Click to show internal directories.
Click to hide internal directories.