Skip to content

Commit b4000d3

Browse files
committed
update go.mod
1 parent 1542b47 commit b4000d3

65 files changed

Lines changed: 146 additions & 147 deletions

Some content is hidden

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

.golangci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ linters-settings:
5656
# TODO(sbuerin) fix remaining findings and set to 20 afterwards
5757
max-complexity: 30
5858
gci:
59-
local-prefixes: easystack.com/cluster-api-provider-openstack
59+
local-prefixes: github.com/easystack/cluster-api-provider-openstack
6060
gocritic:
6161
enabled-tags:
6262
- diagnostic
@@ -96,15 +96,15 @@ linters-settings:
9696
- pkg: sigs.k8s.io/controller-runtime
9797
alias: ctrl
9898
# CAPO
99-
- pkg: easystack.com/cluster-api-provider-openstack/api/v1alpha3
99+
- pkg: github.com/easystack/cluster-api-provider-openstack/api/v1alpha3
100100
alias: infrav1alpha3
101-
- pkg: easystack.com/cluster-api-provider-openstack/api/v1alpha4
101+
- pkg: github.com/easystack/cluster-api-provider-openstack/api/v1alpha4
102102
alias: infrav1alpha4
103-
- pkg: easystack.com/cluster-api-provider-openstack/api/v1alpha5
103+
- pkg: github.com/easystack/cluster-api-provider-openstack/api/v1alpha5
104104
alias: infrav1alpha5
105-
- pkg: easystack.com/cluster-api-provider-openstack/api/v1alpha6
105+
- pkg: github.com/easystack/cluster-api-provider-openstack/api/v1alpha6
106106
alias: infrav1
107-
- pkg: easystack.com/cluster-api-provider-openstack/pkg/utils/errors
107+
- pkg: github.com/easystack/cluster-api-provider-openstack/pkg/utils/errors
108108
alias: capoerrors
109109
# CAPI
110110
- pkg: sigs.k8s.io/cluster-api/api/v1alpha3

PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "2"
22
domain: cluster.x-k8s.io
3-
repo: easystack.com/cluster-api-provider-openstack
3+
repo: github.com/easystack/cluster-api-provider-openstack
44
resources:
55
- group: infrastructure
66
version: v1alpha3

api/v1alpha3/conversion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import (
2424
utilconversion "sigs.k8s.io/cluster-api/util/conversion"
2525
ctrlconversion "sigs.k8s.io/controller-runtime/pkg/conversion"
2626

27-
infrav1 "easystack.com/cluster-api-provider-openstack/api/v1alpha6"
27+
infrav1 "github.com/easystack/cluster-api-provider-openstack/api/v1alpha6"
2828
)
2929

3030
var _ ctrlconversion.Convertible = &OpenStackCluster{}

api/v1alpha3/conversion_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
utilconversion "sigs.k8s.io/cluster-api/util/conversion"
2929
ctrlconversion "sigs.k8s.io/controller-runtime/pkg/conversion"
3030

31-
infrav1 "easystack.com/cluster-api-provider-openstack/api/v1alpha6"
31+
infrav1 "github.com/easystack/cluster-api-provider-openstack/api/v1alpha6"
3232
)
3333

3434
func TestConvertTo(t *testing.T) {

api/v1alpha3/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
// +k8s:conversion-gen=easystack.com/cluster-api-provider-openstack/api/v1alpha6
17+
// +k8s:conversion-gen=github.com/easystack/cluster-api-provider-openstack/api/v1alpha6
1818
package v1alpha3

api/v1alpha3/zz_generated.conversion.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/v1alpha4/conversion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
utilconversion "sigs.k8s.io/cluster-api/util/conversion"
2222
ctrlconversion "sigs.k8s.io/controller-runtime/pkg/conversion"
2323

24-
infrav1 "easystack.com/cluster-api-provider-openstack/api/v1alpha6"
24+
infrav1 "github.com/easystack/cluster-api-provider-openstack/api/v1alpha6"
2525
)
2626

2727
var _ ctrlconversion.Convertible = &OpenStackCluster{}

api/v1alpha4/conversion_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import (
2828
utilconversion "sigs.k8s.io/cluster-api/util/conversion"
2929
ctrlconversion "sigs.k8s.io/controller-runtime/pkg/conversion"
3030

31-
infrav1 "easystack.com/cluster-api-provider-openstack/api/v1alpha6"
31+
infrav1 "github.com/easystack/cluster-api-provider-openstack/api/v1alpha6"
3232
)
3333

3434
func TestConvertTo(t *testing.T) {

api/v1alpha4/doc.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
// +k8s:conversion-gen=easystack.com/cluster-api-provider-openstack/api/v1alpha6
17+
// +k8s:conversion-gen=github.com/easystack/cluster-api-provider-openstack/api/v1alpha6
1818
package v1alpha4

api/v1alpha4/openstackcluster_conversion.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import (
2323
clusterv1alpha4 "sigs.k8s.io/cluster-api/api/v1alpha4"
2424
clusterv1 "sigs.k8s.io/cluster-api/api/v1beta1"
2525

26-
infrav1 "easystack.com/cluster-api-provider-openstack/api/v1alpha6"
26+
infrav1 "github.com/easystack/cluster-api-provider-openstack/api/v1alpha6"
2727
)
2828

2929
// Convert_v1alpha4_APIEndpoint_To_v1beta1_APIEndpoint is an autogenerated conversion function.

0 commit comments

Comments
 (0)