Update imports to new k8s.io style

This commit is contained in:
Justin Santa Barbara 2015-08-08 07:18:05 -04:00
parent 08e904ad96
commit d947a8f78b
2 changed files with 2 additions and 2 deletions

View File

@ -20,11 +20,11 @@ import (
"fmt" "fmt"
"strconv" "strconv"
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/service/ec2" "github.com/aws/aws-sdk-go/service/ec2"
"github.com/aws/aws-sdk-go/service/elb" "github.com/aws/aws-sdk-go/service/elb"
"github.com/golang/glog" "github.com/golang/glog"
"k8s.io/kubernetes/pkg/util"
) )
func (s *AWSCloud) ensureLoadBalancer(region, name string, listeners []*elb.Listener, subnetIDs []string, securityGroupIDs []string) (*elb.LoadBalancerDescription, error) { func (s *AWSCloud) ensureLoadBalancer(region, name string, listeners []*elb.Listener, subnetIDs []string, securityGroupIDs []string) (*elb.LoadBalancerDescription, error) {

View File

@ -17,8 +17,8 @@ limitations under the License.
package aws_cloud package aws_cloud
import ( import (
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"
"k8s.io/kubernetes/pkg/util"
) )
func stringSetToPointers(in util.StringSet) []*string { func stringSetToPointers(in util.StringSet) []*string {