Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
100 changes: 63 additions & 37 deletions Gopkg.lock

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

13 changes: 7 additions & 6 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ required = [ "k8s.io/code-generator/cmd/client-gen", "k8s.io/gengo/types" ]

[[constraint]]
name = "k8s.io/api"
version = "kubernetes-1.12.0"
version = "kubernetes-1.13.4"

[[constraint]]
name = "k8s.io/client-go"
version = "9.0.0"
version = "kubernetes-1.13.4"

[[constraint]]
name = "k8s.io/apiextensions-apiserver"
Expand All @@ -40,15 +40,15 @@ required = [ "k8s.io/code-generator/cmd/client-gen", "k8s.io/gengo/types" ]

[[constraint]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.12.0"
version = "kubernetes-1.13.4"

[[constraint]]
name = "k8s.io/code-generator"
version = "kubernetes-1.12.0"
version = "kubernetes-1.13.4"

[[constraint]]
name = "k8s.io/kube-aggregator"
version = "kubernetes-1.12.0"
version = "kubernetes-1.13.4"

[[constraint]]
name = "k8s.io/utils"
Expand All @@ -64,7 +64,8 @@ required = [ "k8s.io/code-generator/cmd/client-gen", "k8s.io/gengo/types" ]

[[constraint]]
name = "github.com/openshift/api"
branch = "master"
# this revision has both Failing and Degraded. The next bump will remove the depracted Failing
revision = "8e476cb7322e59919cbb6482fd076ec5a214df25"

[[constraint]]
name = "github.com/openshift/client-go"
Expand Down
6 changes: 6 additions & 0 deletions lib/manifest_test.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package lib

import (
"flag"
"io/ioutil"
"os"
"path/filepath"
Expand All @@ -10,8 +11,13 @@ import (

"github.com/davecgh/go-spew/spew"
"k8s.io/apimachinery/pkg/runtime/schema"
"k8s.io/klog"
)

func init() {
klog.InitFlags(flag.CommandLine)
}

func TestParseManifests(t *testing.T) {
tests := []struct {
name string
Expand Down
Loading