This repository was archived by the owner on Jun 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 16 files changed +21
-22
lines changed Expand file tree Collapse file tree 16 files changed +21
-22
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,7 @@ RUN go mod download
14
14
# Copy the go source
15
15
COPY cmd/main.go cmd/main.go
16
16
COPY api/ api/
17
- COPY internal/controller/ internal/controller/
18
- COPY pkg/ pkg/
17
+ COPY internal/ internal/
19
18
20
19
# Build
21
20
# the GOARCH has not a default value to allow the binary be built according to the host where the command
Original file line number Diff line number Diff line change @@ -17,12 +17,12 @@ import (
17
17
"sigs.k8s.io/controller-runtime/pkg/log"
18
18
19
19
infrastructurev1beta1 "github.com/Tomy2e/cluster-api-provider-scaleway/api/v1beta1"
20
- "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /scope"
21
- scwClient "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /service/scaleway/client"
22
- "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /service/scaleway/loadbalancer"
23
- "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /service/scaleway/securitygroup"
24
- "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /service/scaleway/vpc"
25
- "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /service/scaleway/vpcgw"
20
+ "github.com/Tomy2e/cluster-api-provider-scaleway/internal /scope"
21
+ scwClient "github.com/Tomy2e/cluster-api-provider-scaleway/internal /service/scaleway/client"
22
+ "github.com/Tomy2e/cluster-api-provider-scaleway/internal /service/scaleway/loadbalancer"
23
+ "github.com/Tomy2e/cluster-api-provider-scaleway/internal /service/scaleway/securitygroup"
24
+ "github.com/Tomy2e/cluster-api-provider-scaleway/internal /service/scaleway/vpc"
25
+ "github.com/Tomy2e/cluster-api-provider-scaleway/internal /service/scaleway/vpcgw"
26
26
"github.com/scaleway/scaleway-sdk-go/scw"
27
27
)
28
28
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ import (
16
16
"sigs.k8s.io/controller-runtime/pkg/log"
17
17
18
18
infrastructurev1beta1 "github.com/Tomy2e/cluster-api-provider-scaleway/api/v1beta1"
19
- "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /scope"
20
- scwClient "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /service/scaleway/client"
21
- "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /service/scaleway/instance"
19
+ "github.com/Tomy2e/cluster-api-provider-scaleway/internal /scope"
20
+ scwClient "github.com/Tomy2e/cluster-api-provider-scaleway/internal /service/scaleway/client"
21
+ "github.com/Tomy2e/cluster-api-provider-scaleway/internal /service/scaleway/instance"
22
22
)
23
23
24
24
// ScalewayMachineReconciler reconciles a ScalewayMachine object
Original file line number Diff line number Diff line change 5
5
"fmt"
6
6
7
7
infrastructurev1beta1 "github.com/Tomy2e/cluster-api-provider-scaleway/api/v1beta1"
8
- scwClient "github.com/Tomy2e/cluster-api-provider-scaleway/pkg /service/scaleway/client"
8
+ scwClient "github.com/Tomy2e/cluster-api-provider-scaleway/internal /service/scaleway/client"
9
9
"github.com/pkg/errors"
10
10
"github.com/scaleway/scaleway-sdk-go/scw"
11
11
"golang.org/x/exp/slices"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
You can’t perform that action at this time.
0 commit comments