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

feat: update domain #22

Merged
merged 1 commit into from
Feb 6, 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
4 changes: 2 additions & 2 deletions pkg/apis/commons/v1alpha1/doc.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Package v1alpha1 contains API Schema definitions for the stack v1alpha1 API group
// Package v1alpha1 contains API Schema definitions for the v1alpha1 API group
// +kubebuilder:object:generate=true
// +groupName=stack.zncdata.net
// +groupName=zncdata.dev

package v1alpha1
6 changes: 3 additions & 3 deletions pkg/apis/commons/v1alpha1/register.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ See the License for the specific language governing permissions and
limitations under the License.
*/

// Package v1alpha1 contains API Schema definitions for the stack v1alpha1 API group
// Package v1alpha1 contains API Schema definitions for the v1alpha1 API group
// +kubebuilder:object:generate=true
// +groupName=stack.zncdata.net
// +groupName=zncdata.dev
package v1alpha1

import (
Expand All @@ -26,7 +26,7 @@ import (

var (
// GroupVersion is group version used to register these objects
GroupVersion = schema.GroupVersion{Group: "stack.zncdata.net", Version: "v1alpha1"}
GroupVersion = schema.GroupVersion{Group: "zncdata.dev", Version: "v1alpha1"}

// SchemeBuilder is used to add go types to the GroupVersionKind scheme
SchemeBuilder = &scheme.Builder{GroupVersion: GroupVersion}
Expand Down
2 changes: 1 addition & 1 deletion pkg/apis/commons/v1alpha1/s3_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)

const S3BucketFinalizer = "s3bucket.finalizers.stack.zncdata.net"
const S3BucketFinalizer = "s3bucket.finalizers.zncdata.net"

// S3ConnectionSpec defines the desired credential of S3Connection
type S3ConnectionSpec struct {
Expand Down
1 change: 0 additions & 1 deletion pkg/errors/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ var (
Errorf = errors.Errorf
Wrap = errors.Wrap
Wrapf = errors.Wrapf
WithStack = errors.WithStack
WithMessagef = errors.WithMessagef
Cause = errors.Cause
Is = errors.Is
Expand Down
Loading