Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Move API to caren.nutanix.com group #534

Merged
merged 1 commit into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is used to track the info used to scaffold your project
# and allow the plugins properly work.
# More info: https://book.kubebuilder.io/reference/project-config.html
domain: labs.d2iq.io
domain: nutanix.com
layout:
- go.kubebuilder.io/v4
projectName: cluster-api-runtime-extensions-nutanix
Expand All @@ -11,8 +11,8 @@ resources:
- api:
crdVersion: v1
namespaced: true
domain: labs.d2iq.io
group: capiext.labs.d2iq.io
domain: nutanix.com
group: caren.nutanix.com
kind: ClusterConfig
path: github.com/nutanix-cloud-native/cluster-api-runtime-extensions-nutanix/api/v1alpha1
version: v1alpha1
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha1/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@

// Package v1alpha1 contains API Schema definitions for the CAPI extensions v1alpha1 API group
// +kubebuilder:object:generate=true
// +groupName=capiext.labs.d2iq.io
// +groupName=caren.nutanix.com
package v1alpha1
2 changes: 1 addition & 1 deletion api/v1alpha1/groupversion_info.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"sigs.k8s.io/controller-runtime/pkg/scheme"
)

const APIGroup = "capiext.labs.d2iq.io"
const APIGroup = "caren.nutanix.com"

var (
// GroupVersion is group version used to register these objects.
Expand Down
2 changes: 1 addition & 1 deletion docs/content/lifecycle/service-loadbalancer-gc.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ load-balancer services have been fully deleted, indicating that the cloud provid
resources.

By default, all clusters will be cleaned up when deleting, but this can be opted out from by setting the annotation
`capiext.labs.d2iq.io/loadbalancer-gc=false`.
`caren.nutanix.com/loadbalancer-gc=false`.
2 changes: 1 addition & 1 deletion pkg/handlers/generic/lifecycle/ccm/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Package calico provides a handler for managing Calico deployments on clusters, configurable via
// labels and annotations.
//
// To enable Calico deployment, a cluster must be labelled with `capiext.labs.d2iq.io/cni=calico`.
// To enable Calico deployment, a cluster must be labelled with `caren.nutanix.com/cni=calico`.
// This will ensure the Tigera Configmap and associated ClusterResourceSet.
//
// +kubebuilder:rbac:groups=addons.cluster.x-k8s.io,resources=clusterresourcesets,verbs=watch;list;get;create;patch;update;delete
Expand Down
2 changes: 1 addition & 1 deletion pkg/handlers/generic/lifecycle/csi/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Package calico provides a handler for managing Calico deployments on clusters, configurable via
// labels and annotations.
//
// To enable Calico deployment, a cluster must be labelled with `capiext.labs.d2iq.io/cni=calico`.
// To enable Calico deployment, a cluster must be labelled with `caren.nutanix.com/cni=calico`.
// This will ensure the Tigera Configmap and associated ClusterResourceSet.
//
// +kubebuilder:rbac:groups=addons.cluster.x-k8s.io,resources=clusterresourcesets,verbs=watch;list;get;create;patch;update;delete
Expand Down
Loading