From 8c88b249dbc15da857576dc76139bb1b3be4f81e Mon Sep 17 00:00:00 2001 From: Angus Lees Date: Mon, 7 Nov 2016 19:35:42 +1100 Subject: [PATCH] Migrate rackspace/gophercloud -> gophercloud/gophercloud This change migrates the 'openstack' provider and 'keystone' authenticator plugin to the newer gophercloud/gophercloud library. Note the 'rackspace' provider still uses rackspace/gophercloud. Fixes #30404 --- plugin/pkg/authenticator/password/keystone/keystone.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/pkg/authenticator/password/keystone/keystone.go b/plugin/pkg/authenticator/password/keystone/keystone.go index 7d173cfc2..fb035d4c9 100644 --- a/plugin/pkg/authenticator/password/keystone/keystone.go +++ b/plugin/pkg/authenticator/password/keystone/keystone.go @@ -23,8 +23,8 @@ import ( "strings" "github.com/golang/glog" - "github.com/rackspace/gophercloud" - "github.com/rackspace/gophercloud/openstack" + "github.com/gophercloud/gophercloud" + "github.com/gophercloud/gophercloud/openstack" netutil "k8s.io/apimachinery/pkg/util/net" "k8s.io/apiserver/pkg/authentication/user"