Skip to content
Merged
Show file tree
Hide file tree
Changes from 8 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
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
927 changes: 358 additions & 569 deletions Gopkg.lock

Large diffs are not rendered by default.

106 changes: 36 additions & 70 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,28 +1,26 @@
# Gopkg.toml example
#
# Refer to https://golang.github.io/dep/docs/Gopkg.toml.html
# for detailed Gopkg.toml documentation.
#
# required = ["github.com/user/thing/cmd/thing"]
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
#
# [[constraint]]
# name = "github.com/user/project"
# version = "1.0.0"
#
# [[constraint]]
# name = "github.com/user/project2"
# branch = "dev"
# source = "github.com/myfork/project2"
#
# [[override]]
# name = "github.com/x/y"
# version = "2.4.0"
#
# [prune]
# non-go = false
# go-tests = true
# unused-packages = true
required = [
"github.com/emicklei/go-restful",
"github.com/onsi/ginkgo", # for test framework
"github.com/onsi/gomega", # for test matchers
"k8s.io/client-go/plugin/pkg/client/auth/gcp", # for development against gcp
"k8s.io/code-generator/cmd/deepcopy-gen", # for go generate
"sigs.k8s.io/controller-tools/cmd/controller-gen", # for crd/rbac generation
"sigs.k8s.io/controller-runtime/pkg/client/config",
"sigs.k8s.io/controller-runtime/pkg/controller",
"sigs.k8s.io/controller-runtime/pkg/handler",
"sigs.k8s.io/controller-runtime/pkg/manager",
"sigs.k8s.io/controller-runtime/pkg/runtime/signals",
"sigs.k8s.io/controller-runtime/pkg/source",
"sigs.k8s.io/testing_frameworks/integration", # for integration testing
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1",
]

[prune]
go-tests = true

[[constraint]]
name = "sigs.k8s.io/cluster-api"
branch = "master"

[[constraint]]
branch = "master"
Expand All @@ -40,10 +38,6 @@
branch = "master"
name = "github.com/golang/glog"

[[constraint]]
name = "github.com/kubernetes-incubator/apiserver-builder"
version = "1.9.0-alpha.4"

[[constraint]]
name = "github.com/libvirt/libvirt-go"
version = "4.6.0"
Expand All @@ -64,36 +58,6 @@
name = "github.com/spf13/pflag"
version = "1.0.2"

[[constraint]]
branch = "release-1.9"
name = "k8s.io/api"

[[constraint]]
branch = "release-1.9"
name = "k8s.io/apimachinery"

[[constraint]]
branch = "release-1.9"
name = "k8s.io/apiserver"

[[constraint]]
name = "k8s.io/client-go"
branch = "release-6.0"

[[constraint]]
name = "k8s.io/kube-aggregator"
branch = "release-1.9"

[[constraint]]
name = "k8s.io/apiextensions-apiserver"
branch = "release-1.9"

[[constraint]]
name = "sigs.k8s.io/cluster-api"
# branch = "master"
revision = "f31486484d5b33c785540eeaffd47fe57832aef5"


[[override]]
name = "github.com/prometheus/client_golang"
revision = "ae27198cdd90bf12cd134ad79d1366a6cf49f632"
Expand All @@ -106,16 +70,18 @@
name = "github.com/golang/protobuf"
version = "=1.1.0"

# We need to specify fsnotify source to avoid dep panic
# See https://github.com/kubernetes-sigs/kubebuilder/issues/316#issue-342173819 for more info
[[override]]
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
# STANZAS BELOW ARE GENERATED AND MAY BE WRITTEN - DO NOT MODIFY BELOW THIS LINE.

[prune]
go-tests = true
unused-packages = true
[[constraint]]
name="sigs.k8s.io/controller-runtime"
version="v0.1.1"

[[constraint]]
name="sigs.k8s.io/controller-tools"
version="v0.1.1"

[[prune.project]]
name = "sigs.k8s.io/cluster-api"
unused-packages = false
# For dependency below: Refer to issue https://github.com/golang/dep/issues/1799
[[override]]
name = "gopkg.in/fsnotify.v1"
source = "https://github.com/fsnotify/fsnotify.git"
version="v1.4.7"
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ depend-update:
build: ## build binaries
$(DOCKER_CMD) go build $(GOGCFLAGS) -o bin/libvirt-actuator github.com/openshift/cluster-api-provider-libvirt/cmd/libvirt-actuator
$(DOCKER_CMD) go build $(GOGCFLAGS) -o bin/machine-controller github.com/openshift/cluster-api-provider-libvirt/cmd/machine-controller
$(DOCKER_CMD) go test $(GOGCFLAGS) -c -o bin/machines.test github.com/openshift/cluster-api-provider-libvirt/test/machines

.PHONY: images
images: ## Create images
Expand Down
3 changes: 3 additions & 0 deletions PROJECT
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
version: "1"
domain: k8s.io
repo: github.com/openshift/cluster-api-provider-libvirt
Loading