Skip to content

Commit

Permalink
Merge pull request #103 from engelmi/BZ-2107241-update-go-ovirt-client
Browse files Browse the repository at this point in the history
update go-ovirt-client
  • Loading branch information
openshift-merge-robot committed Aug 11, 2022
2 parents d39f261 + 896dd3a commit cd7624f
Show file tree
Hide file tree
Showing 132 changed files with 96 additions and 47 deletions.
5 changes: 2 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ require (
github.com/openshift/build-machinery-go v0.0.0-20220429084610-baff9f8d23b3
github.com/openshift/client-go v0.0.0-20220525160904-9e1acff93e4a
github.com/openshift/library-go v0.0.0-20220525173854-9b950a41acdc
github.com/ovirt/go-ovirt-client v1.0.0
github.com/ovirt/go-ovirt-client-log-klog/v2 v2.0.0
github.com/ovirt/go-ovirt-client/v2 v2.0.0-alpha03
github.com/prometheus/client_golang v1.12.1
github.com/spf13/cobra v1.4.0
gopkg.in/yaml.v2 v2.4.0
Expand All @@ -19,8 +20,6 @@ require (
k8s.io/klog/v2 v2.60.1
)

require github.com/ovirt/go-ovirt-client-log-klog/v2 v2.0.0

require (
github.com/NYTimes/gziphandler v1.1.1 // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -520,12 +520,12 @@ github.com/openshift/library-go v0.0.0-20220525173854-9b950a41acdc/go.mod h1:AMZ
github.com/opentracing/opentracing-go v1.1.0/go.mod h1:UkNAQd3GIcIGf0SeVgPpRdFStlNbqXla1AfSYxPUl2o=
github.com/ovirt/go-ovirt v0.0.0-20220427092237-114c47f2835c h1:jXRFpl7+W0YZj/fghoYuE4vJWW/KeQGvdrhnRwRGtAY=
github.com/ovirt/go-ovirt v0.0.0-20220427092237-114c47f2835c/go.mod h1:Zkdj9/rW6eyuw0uOeEns6O3pP5G2ak+bI/tgkQ/tEZI=
github.com/ovirt/go-ovirt-client v1.0.0 h1:y4b8dMZKWP0LzURdliCQm/9oGYs6pT61xq2c+rygSXs=
github.com/ovirt/go-ovirt-client v1.0.0/go.mod h1:tv8E2pxUkggayDAgMLuQHzcNtzt8RFvnhO5V5b/5X4U=
github.com/ovirt/go-ovirt-client-log-klog/v2 v2.0.0 h1:lQJGJ1VIDMgFiU4J5yXo9npvCgHFabELfrwiNsbPifg=
github.com/ovirt/go-ovirt-client-log-klog/v2 v2.0.0/go.mod h1:Bo83WSGfqYsatXlrOnG0jp8fvrmf5xGzJnpJqVsS+1s=
github.com/ovirt/go-ovirt-client-log/v3 v3.0.0 h1:uvACVHYhYPMkNJrrgWiABcfELB6qoFfsDDUTbpb4Jv4=
github.com/ovirt/go-ovirt-client-log/v3 v3.0.0/go.mod h1:chKKxCv4lRjxezrTG+EIhkWXGhDAWByglPVXh/iYdnQ=
github.com/ovirt/go-ovirt-client/v2 v2.0.0-alpha03 h1:a6cZ5CoFuUB+/bwgizPsSSrqevvIvzg/3s+4Ne6EN2I=
github.com/ovirt/go-ovirt-client/v2 v2.0.0-alpha03/go.mod h1:Zi2RF2khEr+hcr3fCAf6WL7OEoUwUHeWWiob/WcEaDc=
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c/go.mod h1:lzWF7FIEvWOWxwDKqyGYQf6ZUaNfKdP144TG7ZOy1lc=
github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k=
github.com/pelletier/go-toml v1.2.0/go.mod h1:5z9KED0ma1S8pY6P1sdut58dfprrGBbd/94hg7ilaic=
Expand Down
2 changes: 1 addition & 1 deletion internal/ovirt/ovirt.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"path/filepath"

ovirtclient "github.com/ovirt/go-ovirt-client"
kloglogger "github.com/ovirt/go-ovirt-client-log-klog/v2"
ovirtclient "github.com/ovirt/go-ovirt-client/v2"
"gopkg.in/yaml.v2"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/operator/starter.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/openshift/library-go/pkg/operator/csi/csidrivercontrollerservicecontroller"
"github.com/openshift/library-go/pkg/operator/csi/csidrivernodeservicecontroller"
ovirtclient "github.com/ovirt/go-ovirt-client"
ovirtclient "github.com/ovirt/go-ovirt-client/v2"

"github.com/ovirt/csi-driver-operator/assets"
"github.com/ovirt/csi-driver-operator/internal/ovirt"
Expand Down
2 changes: 1 addition & 1 deletion pkg/operator/storageclass_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/openshift/library-go/pkg/operator/events"
"github.com/openshift/library-go/pkg/operator/resource/resourceapply"
"github.com/openshift/library-go/pkg/operator/v1helpers"
ovirtclient "github.com/ovirt/go-ovirt-client"
ovirtclient "github.com/ovirt/go-ovirt-client/v2"
corev1 "k8s.io/api/core/v1"
storagev1 "k8s.io/api/storage/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
Expand Down

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

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

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

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

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

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

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

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

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

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

6 changes: 3 additions & 3 deletions vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -267,15 +267,15 @@ github.com/openshift/library-go/pkg/serviceability
# github.com/ovirt/go-ovirt v0.0.0-20220427092237-114c47f2835c
## explicit; go 1.15
github.com/ovirt/go-ovirt
# github.com/ovirt/go-ovirt-client v1.0.0
## explicit; go 1.16
github.com/ovirt/go-ovirt-client
# github.com/ovirt/go-ovirt-client-log-klog/v2 v2.0.0
## explicit; go 1.14
github.com/ovirt/go-ovirt-client-log-klog/v2
# github.com/ovirt/go-ovirt-client-log/v3 v3.0.0
## explicit; go 1.16
github.com/ovirt/go-ovirt-client-log/v3
# github.com/ovirt/go-ovirt-client/v2 v2.0.0-alpha03
## explicit; go 1.16
github.com/ovirt/go-ovirt-client/v2
# github.com/pkg/errors v0.9.1
## explicit
github.com/pkg/errors
Expand Down

0 comments on commit cd7624f

Please sign in to comment.