constellation/internal/deploy/helm/helm.go

19 lines
260 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
import "helm.sh/helm/v3/pkg/chart"
type Deployment struct {
Chart *chart.Chart
Values map[string]interface{}
}
type Deployments struct {
Cilium Deployment
}