constellation/internal/deploy/helm/helm.go

24 lines
499 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
2022-10-25 13:51:23 +00:00
Values map[string]any
ReleaseName string
Wait bool
2022-08-12 08:20:19 +00:00
}
// Releases bundles all helm releases to be deployed to Constellation.
type Releases struct {
Cilium Release
CertManager Release
Operators Release
ConstellationServices Release
2022-08-12 08:20:19 +00:00
}