Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#2 from alexander-demichev/rename
Browse files Browse the repository at this point in the history
Rename module to machine-api-provider-azure
  • Loading branch information
openshift-merge-robot authored Nov 22, 2021
2 parents d71ae25 + 2dc4772 commit 4916b30
Show file tree
Hide file tree
Showing 73 changed files with 148 additions and 148 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
# limitations under the License.

FROM registry.svc.ci.openshift.org/openshift/release:golang-1.16 as builder
WORKDIR /go/src/sigs.k8s.io/cluster-api-provider-azure
WORKDIR /go/src/github.com/openshift/machine-api-provider-azure
COPY . .
# VERSION env gets set in the openshift/release image and refers to the golang version, which interferes with our own
RUN unset VERSION \
&& GOPROXY=off NO_DOCKER=1 make build

FROM registry.svc.ci.openshift.org/openshift/origin-v4.0:base
COPY --from=builder /go/src/sigs.k8s.io/cluster-api-provider-azure/bin/machine-controller-manager /
COPY --from=builder /go/src/sigs.k8s.io/cluster-api-provider-azure/bin/termination-handler /
COPY --from=builder /go/src/github.com/openshift/machine-api-provider-azure/bin/machine-controller-manager /
COPY --from=builder /go/src/github.com/openshift/machine-api-provider-azure/bin/termination-handler /
6 changes: 3 additions & 3 deletions Dockerfile.rhel
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
# limitations under the License.

FROM registry.ci.openshift.org/ocp/builder:rhel-8-golang-1.16-openshift-4.9 AS builder
WORKDIR /go/src/sigs.k8s.io/cluster-api-provider-azure
WORKDIR /go/src/github.com/openshift/machine-api-provider-azure
COPY . .
# VERSION env gets set in the openshift/release image and refers to the golang version, which interferes with our own
RUN unset VERSION \
&& GOPROXY=off NO_DOCKER=1 make build

FROM registry.ci.openshift.org/ocp/4.9:base
COPY --from=builder /go/src/sigs.k8s.io/cluster-api-provider-azure/bin/machine-controller-manager /
COPY --from=builder /go/src/sigs.k8s.io/cluster-api-provider-azure/bin/termination-handler /
COPY --from=builder /go/src/github.com/openshift/machine-api-provider-azure/bin/machine-controller-manager /
COPY --from=builder /go/src/github.com/openshift/machine-api-provider-azure/bin/termination-handler /
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ GOGCFLAGS ?= -gcflags=all="-N -l"
endif

VERSION ?= $(shell git describe --always --abbrev=7)
REPO_PATH ?= sigs.k8s.io/cluster-api-provider-azure
REPO_PATH ?= github.com/openshift/machine-api-provider-azure
LD_FLAGS ?= -X $(REPO_PATH)/pkg/version.Raw=$(VERSION) -extldflags -static

GO111MODULE = on
Expand Down Expand Up @@ -59,7 +59,7 @@ ifeq ($(NO_DOCKER), 1)
IMAGE_BUILD_CMD = imagebuilder
export CGO_ENABLED
else
DOCKER_CMD = $(ENGINE) run --rm -e CGO_ENABLED=$(CGO_ENABLED) -e GOARCH=$(GOARCH) -e GOOS=$(GOOS) -v "$(PWD)":/go/src/sigs.k8s.io/cluster-api-provider-azure:Z -w /go/src/sigs.k8s.io/cluster-api-provider-azure openshift/origin-release:golang-1.16
DOCKER_CMD = $(ENGINE) run --rm -e CGO_ENABLED=$(CGO_ENABLED) -e GOARCH=$(GOARCH) -e GOOS=$(GOOS) -v "$(PWD)":/go/src/github.com/openshift/machine-api-provider-azure:Z -w /go/src/github.com/openshift/machine-api-provider-azure openshift/origin-release:golang-1.16
IMAGE_BUILD_CMD = $(ENGINE) build
endif

Expand Down
6 changes: 3 additions & 3 deletions cmd/manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ import (
machinev1 "github.com/openshift/api/machine/v1beta1"
"github.com/openshift/machine-api-operator/pkg/controller/machine"
"github.com/openshift/machine-api-operator/pkg/metrics"
actuator "github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators/machine"
machinesetcontroller "github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators/machineset"
"github.com/openshift/machine-api-provider-azure/pkg/record"
"k8s.io/klog/v2"
"k8s.io/klog/v2/klogr"
actuator "sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators/machine"
machinesetcontroller "sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators/machineset"
"sigs.k8s.io/cluster-api-provider-azure/pkg/record"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client/config"
"sigs.k8s.io/controller-runtime/pkg/controller"
Expand Down
2 changes: 1 addition & 1 deletion cmd/termination-handler/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ import (
"flag"
"time"

"github.com/openshift/machine-api-provider-azure/pkg/termination"
"k8s.io/klog/v2"
"k8s.io/klog/v2/klogr"
"sigs.k8s.io/cluster-api-provider-azure/pkg/termination"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client/config"
)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module sigs.k8s.io/cluster-api-provider-azure
module github.com/openshift/machine-api-provider-azure

go 1.16

Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/azureprovider/v1beta1/conversion.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package v1beta1

import "sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
import "github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"

var (
// MachineStatusFromProviderStatus unmarshals a raw extension into an AzureMachineProviderStatus type.
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloud/azure/actuators/machine/actuator.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ import (
"github.com/Azure/go-autorest/autorest"
machinev1 "github.com/openshift/api/machine/v1beta1"
machineapierrors "github.com/openshift/machine-api-operator/pkg/controller/machine"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
corev1 "k8s.io/api/core/v1"
"k8s.io/client-go/tools/record"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
controllerclient "sigs.k8s.io/controller-runtime/pkg/client"
)

Expand Down
8 changes: 4 additions & 4 deletions pkg/cloud/azure/actuators/machine/actuator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,17 @@ import (
machinev1 "github.com/openshift/api/machine/v1beta1"
"github.com/openshift/machine-api-operator/pkg/controller/machine"
machineapierrors "github.com/openshift/machine-api-operator/pkg/controller/machine"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
mock_azure "github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/mock"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/services/virtualmachines"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/kubernetes/scheme"
"k8s.io/client-go/tools/record"
"k8s.io/klog/v2"
"k8s.io/utils/pointer"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
mock_azure "sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/mock"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/services/virtualmachines"
controllerfake "sigs.k8s.io/controller-runtime/pkg/client/fake"
)

Expand Down
22 changes: 11 additions & 11 deletions pkg/cloud/azure/actuators/machine/reconciler.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,19 @@ import (
machinev1 "github.com/openshift/api/machine/v1beta1"
machinecontroller "github.com/openshift/machine-api-operator/pkg/controller/machine"
"github.com/openshift/machine-api-operator/pkg/metrics"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators/machineset"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/decode"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/services/availabilitysets"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/services/availabilityzones"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/services/disks"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/services/networkinterfaces"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/services/publicips"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/services/virtualmachineextensions"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/services/virtualmachines"
apicorev1 "k8s.io/api/core/v1"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators/machineset"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/decode"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/services/availabilitysets"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/services/availabilityzones"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/services/disks"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/services/networkinterfaces"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/services/publicips"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/services/virtualmachineextensions"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/services/virtualmachines"

"sigs.k8s.io/controller-runtime/pkg/client"
)
Expand Down
8 changes: 4 additions & 4 deletions pkg/cloud/azure/actuators/machine/reconciler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ import (
. "github.com/onsi/gomega"
machinev1 "github.com/openshift/api/machine/v1beta1"
machinecontroller "github.com/openshift/machine-api-operator/pkg/controller/machine"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/decode"
mock_azure "github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/mock"
"k8s.io/apimachinery/pkg/api/resource"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/utils/pointer"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/decode"
mock_azure "sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/mock"
)

func TestExists(t *testing.T) {
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloud/azure/actuators/machine/stubs.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (

machinev1 "github.com/openshift/api/machine/v1beta1"
machinecontroller "github.com/openshift/machine-api-operator/pkg/controller/machine"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloud/azure/actuators/machineset/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ import (
"github.com/go-logr/logr"
machinev1 "github.com/openshift/api/machine/v1beta1"
mapierrors "github.com/openshift/machine-api-operator/pkg/controller/machine"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
corev1 "k8s.io/api/core/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/runtime"
"k8s.io/client-go/tools/record"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/client"
"sigs.k8s.io/controller-runtime/pkg/controller"
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloud/azure/mock/client_generated.go

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

Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (

"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2021-02-01/network"
"github.com/Azure/go-autorest/autorest/to"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
)

// Spec specification for network application security groups
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ import (

"github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/network/mgmt/network"
"github.com/Azure/go-autorest/autorest/to"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
)

// Get provides information about a route table.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloud/azure/services/applicationsecuritygroups/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package applicationsecuritygroups
import (
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2021-02-01/network"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

// Service provides operations on resource groups
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package applicationsecuritygroups
import (
"github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/network/mgmt/network"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

// StackHubService provides operations on resource groups
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (

"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2021-03-01/compute"
"github.com/Azure/go-autorest/autorest/to"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
)

// Spec input specification for Get/CreateOrUpdate/Delete calls
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloud/azure/services/availabilitysets/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package availabilitysets
import (
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2021-03-01/compute"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

// Service provides operations on availability zones
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"fmt"
"strings"

"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
)

// Spec input specification for Get/CreateOrUpdate/Delete calls
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (
"errors"
"strings"

"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
)

// Get provides information about a availability zones.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloud/azure/services/availabilityzones/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package availabilityzones
import (
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2021-03-01/compute"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

// Service provides operations on availability zones
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloud/azure/services/availabilityzones/service_stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package availabilityzones
import (
"github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/compute/mgmt/compute"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

// StackHubService provides operations on availability zones
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloud/azure/services/disks/disks.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"fmt"

"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2021-03-01/compute"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
)

// Spec specification for disk
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloud/azure/services/disks/disks_stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"fmt"

"github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/compute/mgmt/compute"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
)

// Get on disk is currently no-op. OS disks should only be deleted and will create with the VM automatically.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloud/azure/services/disks/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package disks
import (
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2021-03-01/compute"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

var _ azure.Service = (*Service)(nil)
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloud/azure/services/disks/service_stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package disks
import (
"github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/compute/mgmt/compute"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

var _ azure.Service = (*Service)(nil)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloud/azure/services/groups/groups.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (

"github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2020-06-01/resources"
"github.com/Azure/go-autorest/autorest/to"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
)

// MicroSoftComputeVirtualMachines constant because the library does not include one for this value.
Expand Down
2 changes: 1 addition & 1 deletion pkg/cloud/azure/services/groups/groups_stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (

"github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/resources/mgmt/resources"
"github.com/Azure/go-autorest/autorest/to"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"k8s.io/klog/v2"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
)

// Get provides information about a resource group.
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloud/azure/services/groups/service.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package groups
import (
"github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2020-06-01/resources"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

// Service provides operations on resource groups
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloud/azure/services/groups/service_stack.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ package groups
import (
"github.com/Azure/azure-sdk-for-go/profiles/2019-03-01/resources/mgmt/resources"
"github.com/Azure/go-autorest/autorest"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure"
"sigs.k8s.io/cluster-api-provider-azure/pkg/cloud/azure/actuators"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure"
"github.com/openshift/machine-api-provider-azure/pkg/cloud/azure/actuators"
)

// StackHubService provides operations on resource groups
Expand Down
Loading

0 comments on commit 4916b30

Please sign in to comment.