https://github.com/kubeflow/katib
Raw File
Tip revision: 6157e0a9428965beae099e050138d678eb8b1599 authored by IWAMOTO Toshihiro on 05 October 2018, 08:27:00 UTC
Point to the example version of ConfigMap from MinikubeDemo.md
Tip revision: 6157e0a
katibctl.go
package main

import (
	"fmt"
	"os"

	"github.com/kubeflow/katib/cmd/cli/command"
)

//Entry point
func main() {
	//init command
	katibctl := command.NewRootCommand()
	if err := katibctl.Execute(); err != nil {
		fmt.Println(err)
		os.Exit(1)
	}

}
back to top