constellation/internal/deploy/helm/helm.go
Otto Bittner bdd9dd922b
AB#2589: Deploy operators via Helm (#575)
* Only deploy operators on GCP/Azure.
* cert-manager is now deployed by default (GCP/Azure)
* remove OLM
2022-11-21 10:35:40 +01:00

24 lines
499 B
Go

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
package helm
// Release bundles all information necessary to create a helm release.
type Release struct {
Chart []byte
Values map[string]any
ReleaseName string
Wait bool
}
// Releases bundles all helm releases to be deployed to Constellation.
type Releases struct {
Cilium Release
CertManager Release
Operators Release
ConstellationServices Release
}