constellation/internal/deploy/helm/helm.go

21 lines
374 B
Go
Raw Normal View History

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