mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-26 15:27:53 -05:00
12 lines
193 B
Go
12 lines
193 B
Go
package main
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/edgelesssys/constellation/v2/cli/internal/helm"
|
|
)
|
|
|
|
func main() {
|
|
helm.Install(os.Getenv("KUBECONFIG")) // constants.ControlPlaneAdminConfFilename)
|
|
}
|