Skip to content

Commit

Permalink
kep-3-cli-framework-install initial (#138)
Browse files Browse the repository at this point in the history
* kep-3-cli-framework-install initial

* changed to args, added github client functions

* added KudoV1Alpha1 client & added more business logic

* added KUDO install with dependencies & updated documentation

* dep ensure for reflecting new imports in Kubectl-kudo + docs typo fix + rebase

* tracking new vendors + docs typo fix

* added instance name and parameter creation + documentation

* added instance dependency heritage

* fixed patch types for fake clientset to vendor version

* added unit tests & client timeout of 3s

* added more unit tests & some refactoring for it

* added k2o unit tests & some refactoring for it

* started adding github client unit tests & some refactoring

* addressed some reviews and added more content. this is the first iteration

* rename framework to package
  • Loading branch information
fabianbaier authored Mar 22, 2019
1 parent a07dc7c commit 38ae9b5
Show file tree
Hide file tree
Showing 188 changed files with 38,831 additions and 718 deletions.
38 changes: 38 additions & 0 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 2 additions & 4 deletions cmd/kudoctl/main.go → cmd/kubectl-kudo/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,13 @@
package main

import (
"fmt"
"os"

"github.com/kudobuilder/kudo/cmd/kudoctl/cmd"
"github.com/kudobuilder/kudo/pkg/kudoctl/cmd"
)

func main() {
if err := cmd.NewRootCmd().Execute(); err != nil {
fmt.Fprintln(os.Stderr, err)
if err := cmd.NewKudoctlCmd().Execute(); err != nil {
os.Exit(-1)
}
}
Loading

0 comments on commit 38ae9b5

Please sign in to comment.