2022-09-05 09:06:08 +02:00
|
|
|
/*
|
|
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2023-01-19 15:57:50 +01:00
|
|
|
// Package helm provides types and functions shared across services.
|
2022-08-12 10:20:19 +02:00
|
|
|
package helm
|
|
|
|
|
2023-08-03 13:54:48 +02:00
|
|
|
import "helm.sh/helm/v3/pkg/chart"
|
|
|
|
|
2022-10-18 13:15:54 +02:00
|
|
|
// Release bundles all information necessary to create a helm release.
|
|
|
|
type Release struct {
|
2023-08-03 13:54:48 +02:00
|
|
|
Chart *chart.Chart
|
2022-10-25 15:51:23 +02:00
|
|
|
Values map[string]any
|
2022-10-18 13:15:54 +02:00
|
|
|
ReleaseName string
|
2023-07-07 17:09:45 +02:00
|
|
|
WaitMode WaitMode
|
2022-08-12 10:20:19 +02:00
|
|
|
}
|
|
|
|
|
2023-07-07 17:09:45 +02: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"
|
|
|
|
)
|