Move CSI charts to separate chart and cleanup loader code

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
This commit is contained in:
Daniel Weiße 2023-06-26 10:13:28 +02:00 committed by Daniel Weiße
parent cb22a25144
commit ea5c83587c
124 changed files with 547 additions and 2290 deletions

View file

@ -186,7 +186,7 @@ func (m *M) FetchNoVerify(ctx context.Context, client *http.Client, measurements
) error {
measurementsRaw, err := getFromURL(ctx, client, measurementsURL)
if err != nil {
return fmt.Errorf("failed to fetch measurements: %w", err)
return fmt.Errorf("failed to fetch measurements from %s: %w", measurementsURL.String(), err)
}
var measurements ImageMeasurementsV2

View file

@ -21,8 +21,7 @@ type Releases struct {
CertManager Release
Operators Release
ConstellationServices Release
SnapshotCRDs *Release
SnapshotController *Release
CSI *Release
}
// MergeMaps returns a new map that is the merger of it's inputs.