2023-07-24 04:30:53 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
|
|
|
package helm
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/constants"
|
|
|
|
"github.com/edgelesssys/constellation/v2/internal/retry"
|
|
|
|
"helm.sh/helm/v3/pkg/action"
|
|
|
|
"helm.sh/helm/v3/pkg/chart"
|
|
|
|
"helm.sh/helm/v3/pkg/cli"
|
|
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
// timeout is the maximum time given to the helm Installer.
|
|
|
|
timeout = 10 * time.Minute
|
|
|
|
// maximumRetryAttempts is the maximum number of attempts to retry a helm install.
|
|
|
|
maximumRetryAttempts = 3
|
|
|
|
)
|
|
|
|
|
2023-07-31 04:53:05 -04:00
|
|
|
type debugLog interface {
|
|
|
|
Debugf(format string, args ...any)
|
|
|
|
Sync()
|
|
|
|
}
|
|
|
|
|
2023-07-24 04:30:53 -04:00
|
|
|
// Installer is a wrapper for a helm install action.
|
|
|
|
type Installer struct {
|
|
|
|
*action.Install
|
2023-07-31 04:53:05 -04:00
|
|
|
log debugLog
|
2023-07-24 04:30:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewInstaller creates a new Installer with the given logger.
|
2023-07-31 04:53:05 -04:00
|
|
|
func NewInstaller(kubeconfig string, logger debugLog) (*Installer, error) {
|
2023-07-24 04:30:53 -04:00
|
|
|
settings := cli.New()
|
|
|
|
settings.KubeConfig = kubeconfig
|
|
|
|
|
|
|
|
actionConfig := &action.Configuration{}
|
|
|
|
if err := actionConfig.Init(settings.RESTClientGetter(), constants.HelmNamespace,
|
2023-07-31 04:53:05 -04:00
|
|
|
"secret", logger.Debugf); err != nil {
|
2023-07-24 04:30:53 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
action := action.NewInstall(actionConfig)
|
|
|
|
action.Namespace = constants.HelmNamespace
|
|
|
|
action.Timeout = timeout
|
|
|
|
|
|
|
|
return &Installer{
|
2023-07-31 04:53:05 -04:00
|
|
|
Install: action,
|
|
|
|
log: logger,
|
2023-07-24 04:30:53 -04:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// InstallChart is the generic install function for helm charts.
|
|
|
|
func (h *Installer) InstallChart(ctx context.Context, release Release) error {
|
|
|
|
return h.InstallChartWithValues(ctx, release, nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// InstallChartWithValues is the generic install function for helm charts with custom values.
|
|
|
|
func (h *Installer) InstallChartWithValues(ctx context.Context, release Release, extraValues map[string]any) error {
|
2023-08-02 09:49:40 -04:00
|
|
|
mergedVals := mergeMaps(release.Values, extraValues)
|
2023-07-24 04:30:53 -04:00
|
|
|
h.ReleaseName = release.ReleaseName
|
|
|
|
if err := h.SetWaitMode(release.WaitMode); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return h.install(ctx, release.Chart, mergedVals)
|
|
|
|
}
|
|
|
|
|
|
|
|
// install tries to install the given chart and aborts after ~5 tries.
|
|
|
|
// The function will wait 30 seconds before retrying a failed installation attempt.
|
|
|
|
// After 3 tries, the retrier will be canceled and the function returns with an error.
|
2023-08-03 07:54:48 -04:00
|
|
|
func (h *Installer) install(ctx context.Context, chart *chart.Chart, values map[string]any) error {
|
2023-07-24 04:30:53 -04:00
|
|
|
var retries int
|
|
|
|
retriable := func(err error) bool {
|
|
|
|
// abort after maximumRetryAttempts tries.
|
|
|
|
if retries >= maximumRetryAttempts {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
retries++
|
|
|
|
// only retry if atomic is set
|
|
|
|
// otherwise helm doesn't uninstall
|
|
|
|
// the release on failure
|
|
|
|
if !h.Atomic {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
// check if error is retriable
|
|
|
|
return wait.Interrupted(err) ||
|
|
|
|
strings.Contains(err.Error(), "connection refused")
|
|
|
|
}
|
|
|
|
doer := installDoer{
|
|
|
|
h,
|
|
|
|
chart,
|
|
|
|
values,
|
|
|
|
h.log,
|
|
|
|
}
|
|
|
|
retrier := retry.NewIntervalRetrier(doer, 30*time.Second, retriable)
|
|
|
|
|
|
|
|
retryLoopStartTime := time.Now()
|
|
|
|
if err := retrier.Do(ctx); err != nil {
|
|
|
|
return fmt.Errorf("helm install: %w", err)
|
|
|
|
}
|
|
|
|
retryLoopFinishDuration := time.Since(retryLoopStartTime)
|
2023-07-31 04:53:05 -04:00
|
|
|
h.log.Debugf("Helm chart %q installation finished after %s", chart.Name(), retryLoopFinishDuration)
|
2023-07-24 04:30:53 -04:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetWaitMode sets the wait mode of the installer.
|
|
|
|
func (h *Installer) SetWaitMode(waitMode WaitMode) error {
|
|
|
|
switch waitMode {
|
|
|
|
case WaitModeNone:
|
|
|
|
h.Wait = false
|
|
|
|
h.Atomic = false
|
|
|
|
case WaitModeWait:
|
|
|
|
h.Wait = true
|
|
|
|
h.Atomic = false
|
|
|
|
case WaitModeAtomic:
|
|
|
|
h.Wait = true
|
|
|
|
h.Atomic = true
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("unknown wait mode %q", waitMode)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// installDoer is a help struct to enable retrying helm's install action.
|
|
|
|
type installDoer struct {
|
|
|
|
Installer *Installer
|
|
|
|
chart *chart.Chart
|
|
|
|
values map[string]any
|
2023-07-31 04:53:05 -04:00
|
|
|
log debugLog
|
2023-07-24 04:30:53 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Do logs which chart is installed and tries to install it.
|
|
|
|
func (i installDoer) Do(ctx context.Context) error {
|
2023-07-31 04:53:05 -04:00
|
|
|
i.log.Debugf("Trying to install Helm chart %s", i.chart.Name())
|
2023-07-24 04:30:53 -04:00
|
|
|
if _, err := i.Installer.RunWithContext(ctx, i.chart, i.values); err != nil {
|
2023-07-31 04:53:05 -04:00
|
|
|
i.log.Debugf("Helm chart installation % failed: %v", i.chart.Name(), err)
|
2023-07-24 04:30:53 -04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|