mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-27 16:39:38 -05:00
13 lines
177 B
Go
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
|
||
|
}
|