-
Notifications
You must be signed in to change notification settings - Fork 31
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
Updates source code for ownership change #59
Conversation
35645e7
to
6b56b8d
Compare
Signed-off-by: Jean du Plessis <[email protected]>
6b56b8d
to
d6c8084
Compare
- prefix(github.com/crossplane/crossplane-runtime) | ||
- prefix(github.com/crossplane/crossplane) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What we conventionally do is to have the prefixes of the current project in a separate import section, e.g.:
import (
"time"
"github.com/crossplane/crossplane-runtime/pkg/connection"
"github.com/crossplane/crossplane-runtime/pkg/event"
"github.com/crossplane/crossplane-runtime/pkg/ratelimiter"
"github.com/crossplane/crossplane-runtime/pkg/reconciler/managed"
xpresource "github.com/crossplane/crossplane-runtime/pkg/resource"
tjcontroller "github.com/crossplane/upjet/pkg/controller"
"github.com/crossplane/upjet/pkg/controller/handler"
"github.com/crossplane/upjet/pkg/terraform"
ctrl "sigs.k8s.io/controller-runtime"
v1alpha1 "github.com/upbound/upjet-provider-template/apis/null/v1alpha1"
features "github.com/upbound/upjet-provider-template/internal/features"
)
- prefix(github.com/crossplane/crossplane-runtime) | |
- prefix(github.com/crossplane/crossplane) | |
- prefix(github.com/crossplane/upjet-provider-template) |
|
||
skip-files: | ||
- "zz_\\..+\\.go$" | ||
- "zz_generated\\..+\\.go$" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are some other generated file names without the zz_generated
prefix, such as zz_controller.go
or zz_register.go
:
- "zz_generated\\..+\\.go$" | |
- "zz_\\..+\\.go$" |
# ==================================================================================== | ||
# Setup Project | ||
|
||
PROJECT_NAME ?= upjet-provider-template | ||
PROJECT_REPO ?= github.com/upbound/$(PROJECT_NAME) | ||
PROJECT_NAME := upjet-provider-template |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please see #30 for the rationale behind using ?=
instead of :=
:
PROJECT_NAME := upjet-provider-template | |
PROJECT_NAME ?= upjet-provider-template |
Description of your changes
Fixes #
I have:
make reviewable test
to ensure this PR is ready for review.How has this code been tested