oc-deploy/src/helm/command.go

17 lines
248 B
Go
Raw Normal View History

2024-09-06 16:08:05 +02:00
package helm
import (
)
type HelmCommandInterface interface {
2024-09-09 09:38:43 +02:00
Status(string) (string, error)
AddRepository(HelmRepo) (string, error)
2024-09-06 16:08:05 +02:00
}
type HelmCommandData struct {
2024-09-09 09:38:43 +02:00
Bin string
2024-09-06 16:08:05 +02:00
}
2024-09-09 09:38:43 +02:00
type RealHelmCommand HelmCommandData
2024-09-06 16:08:05 +02:00