2022-09-05 03:06:08 -04:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-01-19 09:57:50 -05:00
|
|
|
// Package helm provides types and functions shared across services.
|
2022-08-12 04:20:19 -04:00
|
|
|
package helm
|
|
|
|
|
2023-08-03 07:54:48 -04:00
|
|
|
import "helm.sh/helm/v3/pkg/chart"
|
|
|
|
|
2022-10-18 07:15:54 -04:00
|
|
|
// Release bundles all information necessary to create a helm release.
|
2023-11-29 08:55:10 -05:00
|
|
|
type release struct {
|
|
|
|
chart *chart.Chart
|
|
|
|
values map[string]any
|
|
|
|
releaseName string
|
|
|
|
waitMode WaitMode
|
2022-08-12 04:20:19 -04:00
|
|
|
}
|
|
|
|
|
2023-07-07 11:09:45 -04:00
|
|
|
// WaitMode specifies the wait mode for a helm release.
|
|
|
|
type WaitMode string
|
|
|
|
|
|
|
|
const (
|
|
|
|
// WaitModeNone specifies that the helm release should not wait for the resources to be ready.
|
|
|
|
WaitModeNone WaitMode = ""
|
|
|
|
// WaitModeWait specifies that the helm release should wait for the resources to be ready.
|
|
|
|
WaitModeWait WaitMode = "wait"
|
|
|
|
// WaitModeAtomic specifies that the helm release should
|
|
|
|
// wait for the resources to be ready and roll back atomically on failure.
|
|
|
|
WaitModeAtomic WaitMode = "atomic"
|
|
|
|
)
|