12 lines
193 B
Go
Raw Normal View History

2023-07-14 08:39:51 +02:00
package main
import (
"os"
"github.com/edgelesssys/constellation/v2/cli/internal/helm"
)
func main() {
helm.Install(os.Getenv("KUBECONFIG")) // constants.ControlPlaneAdminConfFilename)
}