mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-06 13:17:57 -05:00
c6ccee1250
* Bundle helm-install related code in speparate package * Move cilium installation to new helm package
23 lines
386 B
Go
23 lines
386 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
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
|
|
}
|
|
|
|
type Releases struct {
|
|
Cilium Release
|
|
KMS Release
|
|
}
|