mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
d1ace13713
* Remove `--config` and `--master-secret` falgs * Add `--workspace` flag * In CLI, only work on files with paths created from `cli/internal/cmd` * Properly print values for GCP on IAM create when not directly updating the config --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
522 lines
19 KiB
Go
522 lines
19 KiB
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
package helm
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"helm.sh/helm/v3/pkg/action"
|
|
"helm.sh/helm/v3/pkg/chart"
|
|
"helm.sh/helm/v3/pkg/cli"
|
|
"helm.sh/helm/v3/pkg/release"
|
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/clusterid"
|
|
"github.com/edgelesssys/constellation/v2/internal/cloud/cloudprovider"
|
|
"github.com/edgelesssys/constellation/v2/internal/compatibility"
|
|
"github.com/edgelesssys/constellation/v2/internal/config"
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
|
"github.com/edgelesssys/constellation/v2/internal/file"
|
|
"github.com/edgelesssys/constellation/v2/internal/semver"
|
|
"github.com/edgelesssys/constellation/v2/internal/versions"
|
|
"github.com/spf13/afero"
|
|
apiextensionsv1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
|
|
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
|
|
"k8s.io/apimachinery/pkg/runtime/schema"
|
|
)
|
|
|
|
const (
|
|
// AllowDestructive is a named bool to signal that destructive actions have been confirmed by the user.
|
|
AllowDestructive = true
|
|
// DenyDestructive is a named bool to signal that destructive actions have not been confirmed by the user yet.
|
|
DenyDestructive = false
|
|
)
|
|
|
|
// ErrConfirmationMissing signals that an action requires user confirmation.
|
|
var ErrConfirmationMissing = errors.New("action requires user confirmation")
|
|
|
|
var errReleaseNotFound = errors.New("release not found")
|
|
|
|
// UpgradeClient handles interaction with helm and the cluster.
|
|
type UpgradeClient struct {
|
|
config *action.Configuration
|
|
kubectl crdClient
|
|
fs file.Handler
|
|
actions actionWrapper
|
|
upgradeWorkspace string
|
|
log debugLog
|
|
}
|
|
|
|
// NewUpgradeClient returns a newly initialized UpgradeClient for the given namespace.
|
|
func NewUpgradeClient(client crdClient, upgradeWorkspace, kubeConfigPath, helmNamespace string, log debugLog) (*UpgradeClient, error) {
|
|
settings := cli.New()
|
|
settings.KubeConfig = kubeConfigPath
|
|
|
|
actionConfig := &action.Configuration{}
|
|
if err := actionConfig.Init(settings.RESTClientGetter(), helmNamespace, "secret", log.Debugf); err != nil {
|
|
return nil, fmt.Errorf("initializing config: %w", err)
|
|
}
|
|
|
|
fileHandler := file.NewHandler(afero.NewOsFs())
|
|
|
|
kubeconfig, err := fileHandler.Read(kubeConfigPath)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("reading gce config: %w", err)
|
|
}
|
|
|
|
if err := client.Initialize(kubeconfig); err != nil {
|
|
return nil, fmt.Errorf("initializing kubectl: %w", err)
|
|
}
|
|
|
|
return &UpgradeClient{
|
|
kubectl: client,
|
|
fs: fileHandler,
|
|
actions: actions{config: actionConfig},
|
|
upgradeWorkspace: upgradeWorkspace,
|
|
log: log,
|
|
}, nil
|
|
}
|
|
|
|
func (c *UpgradeClient) shouldUpgrade(releaseName string, newVersion semver.Semver, force bool) error {
|
|
currentVersion, err := c.currentVersion(releaseName)
|
|
if err != nil {
|
|
return fmt.Errorf("getting version for %s: %w", releaseName, err)
|
|
}
|
|
c.log.Debugf("Current %s version: %s", releaseName, currentVersion)
|
|
c.log.Debugf("New %s version: %s", releaseName, newVersion)
|
|
|
|
// This may break for cert-manager or cilium if we decide to upgrade more than one minor version at a time.
|
|
// Leaving it as is since it is not clear to me what kind of sanity check we could do.
|
|
if !force {
|
|
if err := newVersion.IsUpgradeTo(currentVersion); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
cliVersion := constants.BinaryVersion()
|
|
// at this point we conclude that the release should be upgraded. check that this CLI supports the upgrade.
|
|
if releaseName == constellationOperatorsInfo.releaseName || releaseName == constellationServicesInfo.releaseName {
|
|
if cliVersion.Compare(newVersion) != 0 {
|
|
return fmt.Errorf("this CLI only supports microservice version %s for upgrading", cliVersion.String())
|
|
}
|
|
}
|
|
c.log.Debugf("Upgrading %s from %s to %s", releaseName, currentVersion, newVersion)
|
|
|
|
return nil
|
|
}
|
|
|
|
// Upgrade runs a helm-upgrade on all deployments that are managed via Helm.
|
|
// If the CLI receives an interrupt signal it will cancel the context.
|
|
// Canceling the context will prompt helm to abort and roll back the ongoing upgrade.
|
|
func (c *UpgradeClient) Upgrade(ctx context.Context, config *config.Config, idFile clusterid.File, timeout time.Duration, allowDestructive, force bool, upgradeID string) error {
|
|
upgradeErrs := []error{}
|
|
upgradeReleases := []*chart.Chart{}
|
|
newReleases := []*chart.Chart{}
|
|
for _, info := range getManagedCharts(config) {
|
|
c.log.Debugf("Checking release %s", info.releaseName)
|
|
chart, err := loadChartsDir(helmFS, info.path)
|
|
if err != nil {
|
|
return fmt.Errorf("loading chart: %w", err)
|
|
}
|
|
|
|
// Get version of the chart embedded in the CLI
|
|
// This is the version we are upgrading to
|
|
// Since our bundled charts are embedded with version 0.0.0,
|
|
// we need to update them to the same version as the CLI
|
|
var upgradeVersion semver.Semver
|
|
if info == constellationOperatorsInfo || info == constellationServicesInfo || info == csiInfo {
|
|
updateVersions(chart, constants.BinaryVersion())
|
|
upgradeVersion = config.MicroserviceVersion
|
|
} else {
|
|
chartVersion, err := semver.New(chart.Metadata.Version)
|
|
if err != nil {
|
|
return fmt.Errorf("parsing chart version: %w", err)
|
|
}
|
|
upgradeVersion = chartVersion
|
|
}
|
|
|
|
var invalidUpgrade *compatibility.InvalidUpgradeError
|
|
err = c.shouldUpgrade(info.releaseName, upgradeVersion, force)
|
|
switch {
|
|
case errors.Is(err, errReleaseNotFound):
|
|
// if the release is not found, we need to install it
|
|
c.log.Debugf("Release %s not found, adding to new releases...", info.releaseName)
|
|
newReleases = append(newReleases, chart)
|
|
case errors.As(err, &invalidUpgrade):
|
|
upgradeErrs = append(upgradeErrs, fmt.Errorf("skipping %s upgrade: %w", info.releaseName, err))
|
|
case err != nil:
|
|
c.log.Debugf("Adding %s to upgrade releases...", info.releaseName)
|
|
return fmt.Errorf("should upgrade %s: %w", info.releaseName, err)
|
|
case err == nil:
|
|
upgradeReleases = append(upgradeReleases, chart)
|
|
|
|
// Check if installing/upgrading the chart could be destructive
|
|
// If so, we don't want to perform any actions,
|
|
// unless the user confirms it to be OK.
|
|
if !allowDestructive &&
|
|
info.chartName == certManagerInfo.chartName {
|
|
return ErrConfirmationMissing
|
|
}
|
|
}
|
|
}
|
|
|
|
// Backup CRDs and CRs if we are upgrading anything.
|
|
if len(upgradeReleases) != 0 {
|
|
c.log.Debugf("Creating backup of CRDs and CRs")
|
|
crds, err := c.backupCRDs(ctx, upgradeID)
|
|
if err != nil {
|
|
return fmt.Errorf("creating CRD backup: %w", err)
|
|
}
|
|
if err := c.backupCRs(ctx, crds, upgradeID); err != nil {
|
|
return fmt.Errorf("creating CR backup: %w", err)
|
|
}
|
|
}
|
|
|
|
for _, chart := range upgradeReleases {
|
|
c.log.Debugf("Upgrading release %s", chart.Metadata.Name)
|
|
if err := c.upgradeRelease(ctx, timeout, config, idFile, chart); err != nil {
|
|
return fmt.Errorf("upgrading %s: %w", chart.Metadata.Name, err)
|
|
}
|
|
}
|
|
|
|
// Install new releases after upgrading existing ones.
|
|
// This makes sure if a release was removed as a dependency from one chart,
|
|
// and then added as a new standalone chart (or as a dependency of another chart),
|
|
// that the new release is installed without creating naming conflicts.
|
|
// If in the future, we require to install a new release before upgrading existing ones,
|
|
// it should be done in a separate loop, instead of moving this one up.
|
|
for _, chart := range newReleases {
|
|
c.log.Debugf("Installing new release %s", chart.Metadata.Name)
|
|
if err := c.installNewRelease(ctx, timeout, config, idFile, chart); err != nil {
|
|
return fmt.Errorf("upgrading %s: %w", chart.Metadata.Name, err)
|
|
}
|
|
}
|
|
|
|
return errors.Join(upgradeErrs...)
|
|
}
|
|
|
|
func getManagedCharts(config *config.Config) []chartInfo {
|
|
charts := []chartInfo{ciliumInfo, certManagerInfo, constellationOperatorsInfo, constellationServicesInfo}
|
|
if config.GetProvider() == cloudprovider.AWS {
|
|
charts = append(charts, awsLBControllerInfo)
|
|
}
|
|
if config.DeployCSIDriver() {
|
|
charts = append(charts, csiInfo)
|
|
}
|
|
return charts
|
|
}
|
|
|
|
// Versions queries the cluster for running versions and returns a map of releaseName -> version.
|
|
func (c *UpgradeClient) Versions() (ServiceVersions, error) {
|
|
ciliumVersion, err := c.currentVersion(ciliumInfo.releaseName)
|
|
if err != nil {
|
|
return ServiceVersions{}, fmt.Errorf("getting %s version: %w", ciliumInfo.releaseName, err)
|
|
}
|
|
certManagerVersion, err := c.currentVersion(certManagerInfo.releaseName)
|
|
if err != nil {
|
|
return ServiceVersions{}, fmt.Errorf("getting %s version: %w", certManagerInfo.releaseName, err)
|
|
}
|
|
operatorsVersion, err := c.currentVersion(constellationOperatorsInfo.releaseName)
|
|
if err != nil {
|
|
return ServiceVersions{}, fmt.Errorf("getting %s version: %w", constellationOperatorsInfo.releaseName, err)
|
|
}
|
|
servicesVersion, err := c.currentVersion(constellationServicesInfo.releaseName)
|
|
if err != nil {
|
|
return ServiceVersions{}, fmt.Errorf("getting %s version: %w", constellationServicesInfo.releaseName, err)
|
|
}
|
|
csiVersions, err := c.csiVersions()
|
|
if err != nil {
|
|
return ServiceVersions{}, fmt.Errorf("getting CSI versions: %w", err)
|
|
}
|
|
|
|
serviceVersions := ServiceVersions{
|
|
cilium: ciliumVersion,
|
|
certManager: certManagerVersion,
|
|
constellationOperators: operatorsVersion,
|
|
constellationServices: servicesVersion,
|
|
csiVersions: csiVersions,
|
|
}
|
|
|
|
if awsLBVersion, err := c.currentVersion(awsLBControllerInfo.releaseName); err == nil {
|
|
serviceVersions.awsLBController = awsLBVersion
|
|
} else if !errors.Is(err, errReleaseNotFound) {
|
|
return ServiceVersions{}, fmt.Errorf("getting %s version: %w", awsLBControllerInfo.releaseName, err)
|
|
}
|
|
|
|
return serviceVersions, nil
|
|
}
|
|
|
|
// currentVersion returns the version of the currently installed helm release.
|
|
func (c *UpgradeClient) currentVersion(release string) (semver.Semver, error) {
|
|
rel, err := c.actions.listAction(release)
|
|
if err != nil {
|
|
return semver.Semver{}, err
|
|
}
|
|
|
|
if len(rel) == 0 {
|
|
return semver.Semver{}, errReleaseNotFound
|
|
}
|
|
if len(rel) > 1 {
|
|
return semver.Semver{}, fmt.Errorf("multiple releases found for %s", release)
|
|
}
|
|
|
|
if rel[0] == nil || rel[0].Chart == nil || rel[0].Chart.Metadata == nil {
|
|
return semver.Semver{}, fmt.Errorf("received invalid release %s", release)
|
|
}
|
|
|
|
return semver.New(rel[0].Chart.Metadata.Version)
|
|
}
|
|
|
|
func (c *UpgradeClient) csiVersions() (map[string]semver.Semver, error) {
|
|
packedChartRelease, err := c.actions.listAction(csiInfo.releaseName)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("listing %s: %w", csiInfo.releaseName, err)
|
|
}
|
|
|
|
csiVersions := make(map[string]semver.Semver)
|
|
|
|
// No CSI driver installed
|
|
if len(packedChartRelease) == 0 {
|
|
return csiVersions, nil
|
|
}
|
|
|
|
if len(packedChartRelease) > 1 {
|
|
return nil, fmt.Errorf("multiple releases found for %s", csiInfo.releaseName)
|
|
}
|
|
|
|
if packedChartRelease[0] == nil || packedChartRelease[0].Chart == nil {
|
|
return nil, fmt.Errorf("received invalid release %s", csiInfo.releaseName)
|
|
}
|
|
|
|
dependencies := packedChartRelease[0].Chart.Metadata.Dependencies
|
|
for _, dep := range dependencies {
|
|
var err error
|
|
csiVersions[dep.Name], err = semver.New(dep.Version)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("parsing CSI version %q: %w", dep.Name, err)
|
|
}
|
|
}
|
|
return csiVersions, nil
|
|
}
|
|
|
|
// installNewRelease installs a previously not installed release on the cluster.
|
|
func (c *UpgradeClient) installNewRelease(
|
|
ctx context.Context, timeout time.Duration, conf *config.Config, idFile clusterid.File, chart *chart.Chart,
|
|
) error {
|
|
releaseName, values, err := c.loadUpgradeValues(ctx, conf, idFile, chart)
|
|
if err != nil {
|
|
return fmt.Errorf("loading values: %w", err)
|
|
}
|
|
return c.actions.installAction(ctx, releaseName, chart, values, timeout)
|
|
}
|
|
|
|
// upgradeRelease upgrades a release running on the cluster.
|
|
func (c *UpgradeClient) upgradeRelease(
|
|
ctx context.Context, timeout time.Duration, conf *config.Config, idFile clusterid.File, chart *chart.Chart,
|
|
) error {
|
|
releaseName, values, err := c.loadUpgradeValues(ctx, conf, idFile, chart)
|
|
if err != nil {
|
|
return fmt.Errorf("loading values: %w", err)
|
|
}
|
|
|
|
values, err = c.mergeClusterValues(values, releaseName)
|
|
if err != nil {
|
|
return fmt.Errorf("preparing values: %w", err)
|
|
}
|
|
|
|
return c.actions.upgradeAction(ctx, releaseName, chart, values, timeout)
|
|
}
|
|
|
|
// loadUpgradeValues loads values for a chart required for running an upgrade.
|
|
func (c *UpgradeClient) loadUpgradeValues(ctx context.Context, conf *config.Config, idFile clusterid.File, chart *chart.Chart,
|
|
) (string, map[string]any, error) {
|
|
// We need to load all values that can be statically loaded before merging them with the cluster
|
|
// values. Otherwise the templates are not rendered correctly.
|
|
k8sVersion, err := versions.NewValidK8sVersion(conf.KubernetesVersion, false)
|
|
if err != nil {
|
|
return "", nil, fmt.Errorf("validating k8s version: %s", conf.KubernetesVersion)
|
|
}
|
|
|
|
c.log.Debugf("Checking cluster ID file")
|
|
clusterName := clusterid.GetClusterName(conf, idFile)
|
|
|
|
loader := NewLoader(conf.GetProvider(), k8sVersion, clusterName)
|
|
|
|
var values map[string]any
|
|
var releaseName string
|
|
|
|
switch chart.Metadata.Name {
|
|
case ciliumInfo.chartName:
|
|
releaseName = ciliumInfo.releaseName
|
|
var ok bool
|
|
values, ok = ciliumVals[conf.GetProvider().String()]
|
|
if !ok {
|
|
return "", nil, fmt.Errorf("cilium values for csp %q not found", conf.GetProvider().String())
|
|
}
|
|
case certManagerInfo.chartName:
|
|
releaseName = certManagerInfo.releaseName
|
|
values = loader.loadCertManagerValues()
|
|
case constellationOperatorsInfo.chartName:
|
|
releaseName = constellationOperatorsInfo.releaseName
|
|
values = loader.loadOperatorsValues()
|
|
|
|
if err := c.updateCRDs(ctx, chart); err != nil {
|
|
return "", nil, fmt.Errorf("updating CRDs: %w", err)
|
|
}
|
|
case constellationServicesInfo.chartName:
|
|
releaseName = constellationServicesInfo.releaseName
|
|
values = loader.loadConstellationServicesValues()
|
|
|
|
if err := c.applyMigrations(ctx, releaseName, values, conf); err != nil {
|
|
return "", nil, fmt.Errorf("applying migrations: %w", err)
|
|
}
|
|
case csiInfo.chartName:
|
|
releaseName = csiInfo.releaseName
|
|
values = loader.loadCSIValues()
|
|
case awsLBControllerInfo.chartName:
|
|
releaseName = awsLBControllerInfo.releaseName
|
|
values = loader.loadAWSLBControllerValues()
|
|
default:
|
|
return "", nil, fmt.Errorf("unknown chart name: %s", chart.Metadata.Name)
|
|
}
|
|
|
|
return releaseName, values, nil
|
|
}
|
|
|
|
// applyMigrations checks the from version and applies the necessary migrations.
|
|
// The function assumes the caller has verified that our version drift restriction is not violated,
|
|
// Currently, this is done during config validation.
|
|
func (c *UpgradeClient) applyMigrations(ctx context.Context, releaseName string, values map[string]any, conf *config.Config) error {
|
|
current, err := c.currentVersion(releaseName)
|
|
if err != nil {
|
|
return fmt.Errorf("getting %s version: %w", releaseName, err)
|
|
}
|
|
|
|
if current.Major() == 2 && current.Minor() == 8 {
|
|
// Rename/change the following function to implement any necessary migrations.
|
|
return migrateFrom2_8(ctx, values, conf, c.kubectl)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// migrateFrom2_8 is currently a no-op that is kept for documentation purposes.
|
|
// If you have to implement the function please make sure to update the below comment to your situation.
|
|
// migrateFrom2_8 applies the necessary migrations for upgrading from v2.8.x to v2.9.x.
|
|
// migrateFrom2_8 should be applied for v2.8.x --> v2.9.x.
|
|
// migrateFrom2_8 should NOT be applied for v2.8.0 --> v2.9.x.
|
|
func migrateFrom2_8(_ context.Context, _ map[string]any, _ *config.Config, _ crdClient) error {
|
|
return nil
|
|
}
|
|
|
|
// mergeClusterValues returns a values map as required for helm-upgrade.
|
|
// It imitates the behaviour of helm's reuse-values flag by fetching the current values from the cluster
|
|
// and merging the fetched values with the locally found values.
|
|
// This is done to ensure that new values (from upgrades of the local files) end up in the cluster.
|
|
// reuse-values does not ensure this.
|
|
func (c *UpgradeClient) mergeClusterValues(localValues map[string]any, releaseName string) (map[string]any, error) {
|
|
// Ensure installCRDs is set for cert-manager chart.
|
|
if releaseName == certManagerInfo.releaseName {
|
|
localValues["installCRDs"] = true
|
|
}
|
|
clusterValues, err := c.actions.getValues(releaseName)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("getting values for %s: %w", releaseName, err)
|
|
}
|
|
|
|
return mergeMaps(clusterValues, localValues), nil
|
|
}
|
|
|
|
// GetValues queries the cluster for the values of the given release.
|
|
func (c *UpgradeClient) GetValues(release string) (map[string]any, error) {
|
|
client := action.NewGetValues(c.config)
|
|
// Version corresponds to the releases revision. Specifying a Version <= 0 yields the latest release.
|
|
client.Version = 0
|
|
values, err := client.Run(release)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("getting values for %s: %w", release, err)
|
|
}
|
|
return values, nil
|
|
}
|
|
|
|
// updateCRDs walks through the dependencies of the given chart and applies
|
|
// the files in the dependencie's 'crds' folder.
|
|
// This function is NOT recursive!
|
|
func (c *UpgradeClient) updateCRDs(ctx context.Context, chart *chart.Chart) error {
|
|
for _, dep := range chart.Dependencies() {
|
|
for _, crdFile := range dep.Files {
|
|
if strings.HasPrefix(crdFile.Name, "crds/") {
|
|
c.log.Debugf("Updating crd: %s", crdFile.Name)
|
|
err := c.kubectl.ApplyCRD(ctx, crdFile.Data)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type crdClient interface {
|
|
Initialize(kubeconfig []byte) error
|
|
ApplyCRD(ctx context.Context, rawCRD []byte) error
|
|
GetCRDs(ctx context.Context) ([]apiextensionsv1.CustomResourceDefinition, error)
|
|
GetCRs(ctx context.Context, gvr schema.GroupVersionResource) ([]unstructured.Unstructured, error)
|
|
}
|
|
|
|
type actionWrapper interface {
|
|
listAction(release string) ([]*release.Release, error)
|
|
getValues(release string) (map[string]any, error)
|
|
installAction(ctx context.Context, releaseName string, chart *chart.Chart, values map[string]any, timeout time.Duration) error
|
|
upgradeAction(ctx context.Context, releaseName string, chart *chart.Chart, values map[string]any, timeout time.Duration) error
|
|
}
|
|
|
|
type actions struct {
|
|
config *action.Configuration
|
|
}
|
|
|
|
// listAction execute a List action by wrapping helm's action package.
|
|
// It creates the action, runs it at returns results and errors.
|
|
func (a actions) listAction(release string) ([]*release.Release, error) {
|
|
action := action.NewList(a.config)
|
|
action.Filter = release
|
|
return action.Run()
|
|
}
|
|
|
|
func (a actions) getValues(release string) (map[string]any, error) {
|
|
client := action.NewGetValues(a.config)
|
|
// Version corresponds to the releases revision. Specifying a Version <= 0 yields the latest release.
|
|
client.Version = 0
|
|
return client.Run(release)
|
|
}
|
|
|
|
func (a actions) upgradeAction(ctx context.Context, releaseName string, chart *chart.Chart, values map[string]any, timeout time.Duration) error {
|
|
action := action.NewUpgrade(a.config)
|
|
action.Atomic = true
|
|
action.Namespace = constants.HelmNamespace
|
|
action.ReuseValues = false
|
|
action.Timeout = timeout
|
|
if _, err := action.RunWithContext(ctx, releaseName, chart, values); err != nil {
|
|
return fmt.Errorf("upgrading %s: %w", releaseName, err)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (a actions) installAction(ctx context.Context, releaseName string, chart *chart.Chart, values map[string]any, timeout time.Duration) error {
|
|
action := action.NewInstall(a.config)
|
|
action.Atomic = true
|
|
action.Namespace = constants.HelmNamespace
|
|
action.ReleaseName = releaseName
|
|
action.Timeout = timeout
|
|
if _, err := action.RunWithContext(ctx, chart, values); err != nil {
|
|
return fmt.Errorf("installing previously not installed chart %s: %w", chart.Name(), err)
|
|
}
|
|
return nil
|
|
}
|