constellation/internal/deploy/helm/helm.go

23 lines
386 B
Go
Raw Normal View History

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
2022-08-12 04:20:19 -04:00
package helm
import "helm.sh/helm/v3/pkg/chart"
// Release bundles all information necessary to create a helm release.
type Release struct {
Chart *chart.Chart
Values map[string]interface{}
ReleaseName string
Wait bool
2022-08-12 04:20:19 -04:00
}
type Releases struct {
Cilium Release
KMS Release
2022-08-12 04:20:19 -04:00
}