Documentation ¶
Index ¶
- Constants
- func CreateBundleManager() bundle.RegistryClient
- func GenerateAllValidConfigurations(configs map[string]string) (string, error)
- func GetPackageBundleRef(vb releasev1.VersionsBundle) (string, error)
- func GetRegistry(uri string) string
- func GetVersionBundle(reader Reader, eksaVersion string, spec *v1alpha1.Cluster) (*releasev1.VersionsBundle, error)
- func ParseConfigurations(configs []string) (map[string]string, error)
- func PrintCertManagerDoesNotExistMsg()
- func PrintLicense()
- func PullLatestBundle(ctx context.Context, art string) ([]byte, error)
- func PushBundle(ctx context.Context, ref, fileName string, fileContent []byte) error
- func ValidateKubeVersion(kubeVersion string, source BundleSource) error
- func VerifyCertManagerExists(ctx context.Context, kubectl KubectlRunner, kubeConfig string) error
- func WithBundle(bundle *packagesv1.PackageBundle) func(*PackageClient)
- func WithCustomConfigs(customConfigs []string) func(*PackageClient)
- func WithCustomPackages(customPackages []string) func(*PackageClient)
- func WithEksaAccessKeyId(eksaAccessKeyId string) func(client *PackageControllerClient)
- func WithEksaRegion(eksaRegion string) func(client *PackageControllerClient)
- func WithEksaSecretAccessKey(eksaSecretAccessKey string) func(client *PackageControllerClient)
- type BundleReader
- func (b *BundleReader) GetActiveController(ctx context.Context) (*packagesv1.PackageBundleController, error)
- func (b *BundleReader) GetLatestBundle(ctx context.Context, kubeVersion string) (*packagesv1.PackageBundle, error)
- func (b *BundleReader) UpgradeBundle(ctx context.Context, controller *packagesv1.PackageBundleController, ...) error
- type BundleRegistry
- type BundleSource
- type ChartInstaller
- type CustomRegistry
- type DefaultRegistry
- type Discovery
- type DisplayablePackage
- type Installer
- type KubeVersion
- type KubectlRunner
- type Manager
- type ManifestReader
- type PackageClient
- func (pc *PackageClient) ApplyPackages(ctx context.Context, fileName string, kubeConfig string) error
- func (pc *PackageClient) CreatePackages(ctx context.Context, fileName string, kubeConfig string) error
- func (pc *PackageClient) DeletePackages(ctx context.Context, packages []string, kubeConfig string) error
- func (pc *PackageClient) DescribePackages(ctx context.Context, packages []string, kubeConfig string) error
- func (pc *PackageClient) DisplayPackages()
- func (pc *PackageClient) GeneratePackages() ([]packagesv1.Package, error)
- func (pc *PackageClient) GetPackageFromBundle(packageName string) (*packagesv1.BundlePackage, error)
- func (pc *PackageClient) InstallPackage(ctx context.Context, bp *packagesv1.BundlePackage, customName string, ...) error
- func (pc *PackageClient) WritePackagesToStdOut(packages []packagesv1.Package) error
- type PackageClientOpt
- type PackageController
- type PackageControllerClient
- func (pc *PackageControllerClient) ApplySecret(ctx context.Context) error
- func (pc *PackageControllerClient) CreateCronJob(ctx context.Context) error
- func (pc *PackageControllerClient) InstallController(ctx context.Context) error
- func (pc *PackageControllerClient) ValidateControllerDoesNotExist(ctx context.Context) error
- type PackageControllerClientOpt
- type PackageHandler
- type PackageReader
- type Reader
Constants ¶
View Source
const ( Cluster = "cluster" Registry = "registry" )
View Source
const (
CustomName = "generated-"
)
View Source
const (
ImageRepositoryName = "eks-anywhere-packages-bundles"
)
Variables ¶
This section is empty.
Functions ¶
func CreateBundleManager ¶
func CreateBundleManager() bundle.RegistryClient
func GenerateAllValidConfigurations ¶ added in v0.9.2
func GetPackageBundleRef ¶
func GetPackageBundleRef(vb releasev1.VersionsBundle) (string, error)
func GetRegistry ¶ added in v0.9.2
func GetVersionBundle ¶
func ParseConfigurations ¶ added in v0.9.2
func PrintCertManagerDoesNotExistMsg ¶ added in v0.11.0
func PrintCertManagerDoesNotExistMsg()
func PrintLicense ¶
func PrintLicense()
func PullLatestBundle ¶ added in v0.11.2
func PushBundle ¶ added in v0.11.2
func ValidateKubeVersion ¶
func ValidateKubeVersion(kubeVersion string, source BundleSource) error
func VerifyCertManagerExists ¶ added in v0.11.0
func VerifyCertManagerExists(ctx context.Context, kubectl KubectlRunner, kubeConfig string) error
func WithBundle ¶ added in v0.9.2
func WithBundle(bundle *packagesv1.PackageBundle) func(*PackageClient)
func WithCustomConfigs ¶ added in v0.9.2
func WithCustomConfigs(customConfigs []string) func(*PackageClient)
func WithCustomPackages ¶ added in v0.9.2
func WithCustomPackages(customPackages []string) func(*PackageClient)
func WithEksaAccessKeyId ¶ added in v0.11.0
func WithEksaAccessKeyId(eksaAccessKeyId string) func(client *PackageControllerClient)
func WithEksaRegion ¶ added in v0.11.0
func WithEksaRegion(eksaRegion string) func(client *PackageControllerClient)
func WithEksaSecretAccessKey ¶ added in v0.11.0
func WithEksaSecretAccessKey(eksaSecretAccessKey string) func(client *PackageControllerClient)
Types ¶
type BundleReader ¶
type BundleReader struct {
// contains filtered or unexported fields
}
func NewBundleReader ¶
func NewBundleReader(kubeConfig string, source BundleSource, k KubectlRunner, bm Manager, reg BundleRegistry) *BundleReader
func (*BundleReader) GetActiveController ¶
func (b *BundleReader) GetActiveController(ctx context.Context) (*packagesv1.PackageBundleController, error)
func (*BundleReader) GetLatestBundle ¶
func (b *BundleReader) GetLatestBundle(ctx context.Context, kubeVersion string) (*packagesv1.PackageBundle, error)
func (*BundleReader) UpgradeBundle ¶
func (b *BundleReader) UpgradeBundle(ctx context.Context, controller *packagesv1.PackageBundleController, newBundle string) error
type BundleRegistry ¶
type BundleSource ¶
type BundleSource string
func (*BundleSource) Set ¶
func (b *BundleSource) Set(s string) error
func (BundleSource) String ¶
func (b BundleSource) String() string
func (BundleSource) Type ¶
func (b BundleSource) Type() string
type ChartInstaller ¶
type CustomRegistry ¶
type CustomRegistry struct { *executables.Helm // contains filtered or unexported fields }
func NewCustomRegistry ¶
func NewCustomRegistry(helm *executables.Helm, registry string) *CustomRegistry
func (*CustomRegistry) GetRegistryBaseRef ¶
func (cm *CustomRegistry) GetRegistryBaseRef(ctx context.Context) (string, error)
type DefaultRegistry ¶
type DefaultRegistry struct {
// contains filtered or unexported fields
}
func NewDefaultRegistry ¶
func NewDefaultRegistry(rmr Reader, kv string, cv version.Info) *DefaultRegistry
func (*DefaultRegistry) GetRegistryBaseRef ¶
func (dr *DefaultRegistry) GetRegistryBaseRef(ctx context.Context) (string, error)
type Discovery ¶
type Discovery struct {
// contains filtered or unexported fields
}
Discovery * Implements ServerVersionInterface to provide the Kubernetes client version to be used.
func NewDiscovery ¶
func NewDiscovery(kubeVersion *KubeVersion) *Discovery
type DisplayablePackage ¶
DisplayablePackage wraps Package to omit undesired members (like Status).
This is necessary in part because of https://github.com/golang/go/issues/11939 but also because we just don't want to generate a Status section when we're emitting templates for a user to modify.
func NewDisplayablePackage ¶
func NewDisplayablePackage(p *api.Package) *DisplayablePackage
type Installer ¶ added in v0.9.2
type Installer struct {
// contains filtered or unexported fields
}
func NewInstaller ¶ added in v0.9.2
func NewInstaller(runner KubectlRunner, pc PackageHandler, pcc PackageController, spec *cluster.Spec, packagesLocation string) *Installer
type KubeVersion ¶
type KubeVersion struct {
// contains filtered or unexported fields
}
func NewKubeVersion ¶
func NewKubeVersion(major string, minor string) *KubeVersion
type KubectlRunner ¶
type KubectlRunner interface { ExecuteCommand(ctx context.Context, opts ...string) (bytes.Buffer, error) ExecuteFromYaml(ctx context.Context, yaml []byte, opts ...string) (bytes.Buffer, error) GetResource(ctx context.Context, resourceType string, name string, kubeconfig string, namespace string) (bool, error) }
type Manager ¶
type Manager interface { LatestBundle(ctx context.Context, baseRef string, kubeVersion string) ( *packagesv1.PackageBundle, error) }
type ManifestReader ¶ added in v0.11.2
type PackageClient ¶
type PackageClient struct {
// contains filtered or unexported fields
}
func NewPackageClient ¶
func NewPackageClient(kubectl KubectlRunner, options ...PackageClientOpt) *PackageClient
func (*PackageClient) ApplyPackages ¶
func (*PackageClient) CreatePackages ¶
func (*PackageClient) DeletePackages ¶
func (*PackageClient) DescribePackages ¶
func (*PackageClient) DisplayPackages ¶
func (pc *PackageClient) DisplayPackages()
func (*PackageClient) GeneratePackages ¶
func (pc *PackageClient) GeneratePackages() ([]packagesv1.Package, error)
func (*PackageClient) GetPackageFromBundle ¶
func (pc *PackageClient) GetPackageFromBundle(packageName string) (*packagesv1.BundlePackage, error)
func (*PackageClient) InstallPackage ¶
func (pc *PackageClient) InstallPackage(ctx context.Context, bp *packagesv1.BundlePackage, customName string, kubeConfig string) error
func (*PackageClient) WritePackagesToStdOut ¶
func (pc *PackageClient) WritePackagesToStdOut(packages []packagesv1.Package) error
type PackageClientOpt ¶ added in v0.9.2
type PackageClientOpt func(*PackageClient)
type PackageController ¶ added in v0.9.2
type PackageControllerClient ¶
type PackageControllerClient struct {
// contains filtered or unexported fields
}
func NewPackageControllerClient ¶
func NewPackageControllerClient(chartInstaller ChartInstaller, kubectl KubectlRunner, clusterName, kubeConfig, uri, chartName, chartVersion string, options ...PackageControllerClientOpt) *PackageControllerClient
func (*PackageControllerClient) ApplySecret ¶ added in v0.11.0
func (pc *PackageControllerClient) ApplySecret(ctx context.Context) error
func (*PackageControllerClient) CreateCronJob ¶ added in v0.11.0
func (pc *PackageControllerClient) CreateCronJob(ctx context.Context) error
func (*PackageControllerClient) InstallController ¶
func (pc *PackageControllerClient) InstallController(ctx context.Context) error
func (*PackageControllerClient) ValidateControllerDoesNotExist ¶
func (pc *PackageControllerClient) ValidateControllerDoesNotExist(ctx context.Context) error
type PackageControllerClientOpt ¶ added in v0.11.0
type PackageControllerClientOpt func(client *PackageControllerClient)
type PackageHandler ¶ added in v0.9.2
type PackageReader ¶
type PackageReader struct {
ManifestReader
}
func NewPackageReader ¶
func NewPackageReader(mr ManifestReader) *PackageReader
func (*PackageReader) ReadChartsFromBundles ¶
func (*PackageReader) ReadImagesFromBundles ¶
Source Files ¶
Click to show internal directories.
Click to hide internal directories.