Skip to content

Commit 1816061

Browse files
authored
Merge pull request #106 from maxdrib/rename-project
Renaming project to use new project path
2 parents d1eb009 + 0dd0b64 commit 1816061

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+80
-79
lines changed

PROJECT

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
domain: cluster.x-k8s.io
22
projectName: cluster-api-provider-capc
3-
repo: github.com/aws/cluster-api-provider-cloudstack
3+
repo: sigs.k8s.io/cluster-api-provider-cloudstack
44
resources:
55
- api:
66
crdVersion: v1
@@ -9,7 +9,7 @@ resources:
99
domain: cluster.x-k8s.io
1010
group: infrastructure
1111
kind: CloudStackCluster
12-
path: github.com/aws/cluster-api-provider-cloudstack/api/v1beta1
12+
path: sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1
1313
version: v1beta1
1414
webhooks:
1515
defaulting: true
@@ -22,7 +22,7 @@ resources:
2222
domain: cluster.x-k8s.io
2323
group: infrastructure
2424
kind: CloudStackMachine
25-
path: github.com/aws/cluster-api-provider-cloudstack/api/v1beta1
25+
path: sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1
2626
version: v1beta1
2727
webhooks:
2828
defaulting: true
@@ -35,7 +35,7 @@ resources:
3535
domain: cluster.x-k8s.io
3636
group: infrastructure
3737
kind: CloudStackMachineTemplate
38-
path: github.com/aws/cluster-api-provider-cloudstack/api/v1beta1
38+
path: sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1
3939
version: v1beta1
4040
webhooks:
4141
defaulting: true
@@ -48,7 +48,7 @@ resources:
4848
domain: cluster.x-k8s.io
4949
group: infrastructure
5050
kind: CloudStackIsolatedNetwork
51-
path: github.com/aws/cluster-api-provider-cloudstack/api/v1beta1
51+
path: sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1
5252
version: v1beta1
5353
- api:
5454
crdVersion: v1
@@ -57,7 +57,7 @@ resources:
5757
domain: cluster.x-k8s.io
5858
group: infrastructure
5959
kind: CloudStackZone
60-
path: github.com/aws/cluster-api-provider-cloudstack/api/v1beta1
60+
path: sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1
6161
version: v1beta1
6262
- api:
6363
crdVersion: v1
@@ -66,7 +66,7 @@ resources:
6666
domain: cluster.x-k8s.io
6767
group: infrastructure
6868
kind: CloudStackAffinityGroup
69-
path: github.com/aws/cluster-api-provider-cloudstack/api/v1beta1
69+
path: sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1
7070
version: v1beta1
7171
- api:
7272
crdVersion: v1
@@ -75,6 +75,6 @@ resources:
7575
domain: cluster.x-k8s.io
7676
group: infrastructure
7777
kind: CloudStackMachineStateChecker
78-
path: github.com/aws/cluster-api-provider-cloudstack/api/v1beta1
78+
path: sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1
7979
version: v1beta1
8080
version: "3"

api/v1beta1/cloudstackcluster_webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ import (
2020
"fmt"
2121
"reflect"
2222

23-
"github.com/aws/cluster-api-provider-cloudstack/pkg/webhookutil"
2423
"k8s.io/apimachinery/pkg/api/errors"
2524
"k8s.io/apimachinery/pkg/runtime"
2625
"k8s.io/apimachinery/pkg/util/validation/field"
26+
"sigs.k8s.io/cluster-api-provider-cloudstack/pkg/webhookutil"
2727
ctrl "sigs.k8s.io/controller-runtime"
2828
logf "sigs.k8s.io/controller-runtime/pkg/log"
2929
"sigs.k8s.io/controller-runtime/pkg/webhook"

api/v1beta1/cloudstackcluster_webhook_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ package v1beta1_test
1919
import (
2020
"context"
2121

22-
infrav1 "github.com/aws/cluster-api-provider-cloudstack/api/v1beta1"
23-
"github.com/aws/cluster-api-provider-cloudstack/test/dummies"
2422
. "github.com/onsi/ginkgo/v2"
2523
. "github.com/onsi/gomega"
24+
infrav1 "sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1"
25+
"sigs.k8s.io/cluster-api-provider-cloudstack/test/dummies"
2626
)
2727

2828
var _ = Describe("CloudStackCluster webhooks", func() {

api/v1beta1/cloudstackmachine_webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ import (
2020
"fmt"
2121
"reflect"
2222

23-
"github.com/aws/cluster-api-provider-cloudstack/pkg/webhookutil"
2423
"k8s.io/apimachinery/pkg/api/errors"
2524
"k8s.io/apimachinery/pkg/runtime"
2625
"k8s.io/apimachinery/pkg/util/validation/field"
26+
"sigs.k8s.io/cluster-api-provider-cloudstack/pkg/webhookutil"
2727
ctrl "sigs.k8s.io/controller-runtime"
2828
logf "sigs.k8s.io/controller-runtime/pkg/log"
2929
"sigs.k8s.io/controller-runtime/pkg/webhook"

api/v1beta1/cloudstackmachine_webhook_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ package v1beta1_test
1818

1919
import (
2020
"context"
21-
"github.com/aws/cluster-api-provider-cloudstack/api/v1beta1"
21+
"sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1"
2222

23-
"github.com/aws/cluster-api-provider-cloudstack/test/dummies"
2423
. "github.com/onsi/ginkgo/v2"
2524
. "github.com/onsi/gomega"
25+
"sigs.k8s.io/cluster-api-provider-cloudstack/test/dummies"
2626
)
2727

2828
var _ = Describe("CloudStackMachine webhook", func() {

api/v1beta1/cloudstackmachinetemplate_webhook.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
"reflect"
2222
"strings"
2323

24-
"github.com/aws/cluster-api-provider-cloudstack/pkg/webhookutil"
2524
"k8s.io/apimachinery/pkg/api/errors"
2625
"k8s.io/apimachinery/pkg/runtime"
2726
"k8s.io/apimachinery/pkg/util/validation/field"
27+
"sigs.k8s.io/cluster-api-provider-cloudstack/pkg/webhookutil"
2828
ctrl "sigs.k8s.io/controller-runtime"
2929
logf "sigs.k8s.io/controller-runtime/pkg/log"
3030
"sigs.k8s.io/controller-runtime/pkg/webhook"

api/v1beta1/cloudstackmachinetemplate_webhook_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ package v1beta1_test
1818

1919
import (
2020
"context"
21-
"github.com/aws/cluster-api-provider-cloudstack/api/v1beta1"
21+
"sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1"
2222

23-
"github.com/aws/cluster-api-provider-cloudstack/test/dummies"
2423
. "github.com/onsi/ginkgo/v2"
2524
. "github.com/onsi/gomega"
25+
"sigs.k8s.io/cluster-api-provider-cloudstack/test/dummies"
2626
)
2727

2828
var _ = Describe("CloudStackMachineTemplate webhook", func() {

api/v1beta1/webhook_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ import (
3131

3232
admissionv1beta1 "k8s.io/api/admission/v1beta1"
3333
//+kubebuilder:scaffold:imports
34-
infrav1 "github.com/aws/cluster-api-provider-cloudstack/api/v1beta1"
3534
"k8s.io/apimachinery/pkg/runtime"
35+
infrav1 "sigs.k8s.io/cluster-api-provider-cloudstack/api/v1beta1"
3636
ctrl "sigs.k8s.io/controller-runtime"
3737
"sigs.k8s.io/controller-runtime/pkg/client"
3838
"sigs.k8s.io/controller-runtime/pkg/envtest"

config/crd/bases/infrastructure.cluster.x-k8s.io_cloudstackmachines.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ spec:
117117
description: CloudStack disk offering to use.
118118
properties:
119119
customSizeInGB:
120-
description: disk size if disk offering is custom disk (need to
121-
specify disk size by users)
120+
description: Desired disk size. Used if disk offering is customizable
121+
as indicated by the ACS field 'Custom Disk Size'.
122122
format: int64
123123
type: integer
124124
device:

config/crd/bases/infrastructure.cluster.x-k8s.io_cloudstackmachinetemplates.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,9 @@ spec:
104104
description: CloudStack disk offering to use.
105105
properties:
106106
customSizeInGB:
107-
description: disk size if disk offering is custom disk
108-
(need to specify disk size by users)
107+
description: Desired disk size. Used if disk offering
108+
is customizable as indicated by the ACS field 'Custom
109+
Disk Size'.
109110
format: int64
110111
type: integer
111112
device:

0 commit comments

Comments
 (0)