constellation/internal/deploy/helm/helm.go
2022-08-12 10:20:19 +02:00

13 lines
177 B
Go

package helm
import "helm.sh/helm/v3/pkg/chart"
type Deployment struct {
Chart *chart.Chart
Values map[string]interface{}
}
type Deployments struct {
Cilium Deployment
}