Skip to content

Commit

Permalink
Update go mod and refs with crossplane org name
Browse files Browse the repository at this point in the history
Signed-off-by: hasheddan <georgedanielmangum@gmail.com>
  • Loading branch information
hasheddan committed Feb 19, 2020
1 parent d91d1dc commit e1e5d26
Show file tree
Hide file tree
Showing 130 changed files with 501 additions and 503 deletions.
8 changes: 4 additions & 4 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ I have:
- [ ] Updated any relevant [documentation], [examples], or [release notes].
- [ ] Updated the dependencies in [`app.yaml`] to include any new role permissions.

[documentation]: https://github.com/crossplaneio/crossplane/tree/master/docs
[examples]: https://github.com/crossplaneio/crossplane/tree/master/cluster/examples
[release notes]: https://github.com/crossplaneio/crossplane/tree/master/PendingReleaseNotes.md
[`app.yaml`]: https://github.com/crossplaneio/stack-aws/blob/master/config/stack/manifests/app.yaml
[documentation]: https://github.com/crossplane/crossplane/tree/master/docs
[examples]: https://github.com/crossplane/crossplane/tree/master/cluster/examples
[release notes]: https://github.com/crossplane/crossplane/tree/master/PendingReleaseNotes.md
[`app.yaml`]: https://github.com/crossplane/stack-aws/blob/master/config/stack/manifests/app.yaml
2 changes: 1 addition & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ linters-settings:
goimports:
# put imports beginning with prefix after 3rd-party packages;
# it's a comma-separated list of prefixes
local-prefixes: github.com/crossplaneio/stack-aws
local-prefixes: github.com/crossplane/stack-aws

gocyclo:
# minimal code complexity to report, 30 by default (but we recommend 10-20)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Setup Project

PROJECT_NAME := stack-aws
PROJECT_REPO := github.com/crossplaneio/$(PROJECT_NAME)
PROJECT_REPO := github.com/crossplane/$(PROJECT_NAME)

PLATFORMS ?= linux_amd64 linux_arm64
# -include will silently skip missing files, which allows us
Expand Down
2 changes: 1 addition & 1 deletion PROJECT
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version: "1"
domain: crossplane.io
repo: github.com/crossplaneio/stack-aws
repo: github.com/crossplane/stack-aws
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Overview

This `stack-aws` repository is the implementation of a Crossplane infrastructure
[stack](https://github.com/crossplaneio/crossplane/blob/master/design/design-doc-stacks.md) for
[stack](https://github.com/crossplane/crossplane/blob/master/design/design-doc-stacks.md) for
[Amazon Web Services (AWS)](https://aws.amazon.com).
The stack that is built from the source code in this repository can be installed into a Crossplane control plane and adds the following new functionality:

Expand All @@ -18,11 +18,11 @@ For getting started guides, installation, deployment, and administration, see ou
## Contributing

Stack-AWS is a community driven project and we welcome contributions.
See the Crossplane [Contributing](https://github.com/crossplaneio/crossplane/blob/master/CONTRIBUTING.md) guidelines to get started.
See the Crossplane [Contributing](https://github.com/crossplane/crossplane/blob/master/CONTRIBUTING.md) guidelines to get started.

## Report a Bug

For filing bugs, suggesting improvements, or requesting new features, please open an [issue](https://github.com/crossplaneio/stack-aws/issues).
For filing bugs, suggesting improvements, or requesting new features, please open an [issue](https://github.com/crossplane/stack-aws/issues).

## Contact

Expand All @@ -36,15 +36,15 @@ Please use the following to reach members of the community:
## Roadmap

Stack-AWS goals and milestones are currently tracked in the Crossplane repository.
More information can be found in [ROADMAP.md](https://github.com/crossplaneio/crossplane/blob/master/ROADMAP.md).
More information can be found in [ROADMAP.md](https://github.com/crossplane/crossplane/blob/master/ROADMAP.md).

## Governance and Owners

Stack-AWS is run according to the same [Governance](https://github.com/crossplaneio/crossplane/blob/master/GOVERNANCE.md) and [Ownership](https://github.com/crossplaneio/crossplane/blob/master/OWNERS.md) structure as the core Crossplane project.
Stack-AWS is run according to the same [Governance](https://github.com/crossplane/crossplane/blob/master/GOVERNANCE.md) and [Ownership](https://github.com/crossplane/crossplane/blob/master/OWNERS.md) structure as the core Crossplane project.

## Code of Conduct

Stack-AWS adheres to the same [Code of Conduct](https://github.com/crossplaneio/crossplane/blob/master/CODE_OF_CONDUCT.md) as the core Crossplane project.
Stack-AWS adheres to the same [Code of Conduct](https://github.com/crossplane/crossplane/blob/master/CODE_OF_CONDUCT.md) as the core Crossplane project.

## Licensing

Expand Down
16 changes: 8 additions & 8 deletions apis/aws.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ package apis
import (
"k8s.io/apimachinery/pkg/runtime"

cachev1beta1 "github.com/crossplaneio/stack-aws/apis/cache/v1beta1"
computev1alpha3 "github.com/crossplaneio/stack-aws/apis/compute/v1alpha3"
databasev1alpha3 "github.com/crossplaneio/stack-aws/apis/database/v1alpha3"
databasev1beta1 "github.com/crossplaneio/stack-aws/apis/database/v1beta1"
identityv1alpha3 "github.com/crossplaneio/stack-aws/apis/identity/v1alpha3"
networkv1alpha3 "github.com/crossplaneio/stack-aws/apis/network/v1alpha3"
storagev1alpha3 "github.com/crossplaneio/stack-aws/apis/storage/v1alpha3"
awsv1alpha3 "github.com/crossplaneio/stack-aws/apis/v1alpha3"
cachev1beta1 "github.com/crossplane/stack-aws/apis/cache/v1beta1"
computev1alpha3 "github.com/crossplane/stack-aws/apis/compute/v1alpha3"
databasev1alpha3 "github.com/crossplane/stack-aws/apis/database/v1alpha3"
databasev1beta1 "github.com/crossplane/stack-aws/apis/database/v1beta1"
identityv1alpha3 "github.com/crossplane/stack-aws/apis/identity/v1alpha3"
networkv1alpha3 "github.com/crossplane/stack-aws/apis/network/v1alpha3"
storagev1alpha3 "github.com/crossplane/stack-aws/apis/storage/v1alpha3"
awsv1alpha3 "github.com/crossplane/stack-aws/apis/v1alpha3"
)

func init() {
Expand Down
2 changes: 1 addition & 1 deletion apis/cache/v1beta1/replication_group_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package v1beta1
import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
)

// ReplicationGroup states.
Expand Down
2 changes: 1 addition & 1 deletion apis/cache/v1beta1/zz_generated.class.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apis/cache/v1beta1/zz_generated.managed.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions apis/compute/v1alpha3/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ import (
"github.com/pkg/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplaneio/crossplane-runtime/pkg/resource"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplane/crossplane-runtime/pkg/resource"

identity "github.com/crossplaneio/stack-aws/apis/identity/v1alpha3"
network "github.com/crossplaneio/stack-aws/apis/network/v1alpha3"
identity "github.com/crossplane/stack-aws/apis/identity/v1alpha3"
network "github.com/crossplane/stack-aws/apis/network/v1alpha3"
)

// Cluster statuses.
Expand Down
4 changes: 2 additions & 2 deletions apis/compute/v1alpha3/types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"github.com/google/go-cmp/cmp"
"github.com/pkg/errors"

"github.com/crossplaneio/crossplane-runtime/pkg/resource"
"github.com/crossplaneio/crossplane-runtime/pkg/test"
"github.com/crossplane/crossplane-runtime/pkg/resource"
"github.com/crossplane/crossplane-runtime/pkg/test"
)

var _ resource.AttributeReferencer = (*VPCIDReferencerForEKSCluster)(nil)
Expand Down
2 changes: 1 addition & 1 deletion apis/compute/v1alpha3/zz_generated.class.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apis/compute/v1alpha3/zz_generated.managed.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions apis/database/v1alpha3/dbsubnetgroup_referencers.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ import (
"k8s.io/apimachinery/pkg/types"
"sigs.k8s.io/controller-runtime/pkg/client"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplaneio/crossplane-runtime/pkg/resource"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplane/crossplane-runtime/pkg/resource"
)

// DBSubnetGroupNameReferencer is used to get a Name from another DBSubnetGroup
Expand Down
6 changes: 3 additions & 3 deletions apis/database/v1alpha3/dbsubnetgroup_referencers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ import (
runtime "k8s.io/apimachinery/pkg/runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplaneio/crossplane-runtime/pkg/resource"
"github.com/crossplaneio/crossplane-runtime/pkg/test"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplane/crossplane-runtime/pkg/resource"
"github.com/crossplane/crossplane-runtime/pkg/test"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion apis/database/v1alpha3/dbsubnetgroup_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
"github.com/aws/aws-sdk-go-v2/service/rds"
"github.com/onsi/gomega"

aws "github.com/crossplaneio/stack-aws/pkg/clients"
aws "github.com/crossplane/stack-aws/pkg/clients"
)

func Test_DBSubnetGroup_BuildExternalStatusFromObservation(t *testing.T) {
Expand Down
8 changes: 4 additions & 4 deletions apis/database/v1alpha3/dbsubnetgroup_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ import (
"github.com/aws/aws-sdk-go-v2/service/rds"
"github.com/pkg/errors"

network "github.com/crossplaneio/stack-aws/apis/network/v1alpha3"
aws "github.com/crossplaneio/stack-aws/pkg/clients"
network "github.com/crossplane/stack-aws/apis/network/v1alpha3"
aws "github.com/crossplane/stack-aws/pkg/clients"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplaneio/crossplane-runtime/pkg/resource"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplane/crossplane-runtime/pkg/resource"
)

// Error strings
Expand Down
4 changes: 2 additions & 2 deletions apis/database/v1alpha3/dbsubnetgroup_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"github.com/google/go-cmp/cmp"
"github.com/pkg/errors"

"github.com/crossplaneio/crossplane-runtime/pkg/resource"
"github.com/crossplaneio/crossplane-runtime/pkg/test"
"github.com/crossplane/crossplane-runtime/pkg/resource"
"github.com/crossplane/crossplane-runtime/pkg/test"
)

var _ resource.AttributeReferencer = (*SubnetIDReferencerForDBSubnetGroup)(nil)
Expand Down
2 changes: 1 addition & 1 deletion apis/database/v1alpha3/zz_generated.managed.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions apis/database/v1beta1/rdsinstance_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ import (
"github.com/pkg/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplaneio/crossplane-runtime/pkg/resource"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplane/crossplane-runtime/pkg/resource"

databasev1alpha3 "github.com/crossplaneio/stack-aws/apis/database/v1alpha3"
identityv1alpha3 "github.com/crossplaneio/stack-aws/apis/identity/v1alpha3"
network "github.com/crossplaneio/stack-aws/apis/network/v1alpha3"
databasev1alpha3 "github.com/crossplane/stack-aws/apis/database/v1alpha3"
identityv1alpha3 "github.com/crossplane/stack-aws/apis/identity/v1alpha3"
network "github.com/crossplane/stack-aws/apis/network/v1alpha3"
)

// Error strings
Expand Down
6 changes: 3 additions & 3 deletions apis/database/v1beta1/rdsinstance_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ import (
"github.com/google/go-cmp/cmp"
"github.com/pkg/errors"

"github.com/crossplaneio/crossplane-runtime/pkg/resource"
"github.com/crossplaneio/crossplane-runtime/pkg/test"
"github.com/crossplane/crossplane-runtime/pkg/resource"
"github.com/crossplane/crossplane-runtime/pkg/test"

aws "github.com/crossplaneio/stack-aws/pkg/clients"
aws "github.com/crossplane/stack-aws/pkg/clients"
)

var _ resource.AttributeReferencer = (*VPCSecurityGroupIDReferencerForRDSInstance)(nil)
Expand Down
2 changes: 1 addition & 1 deletion apis/database/v1beta1/zz_generated.class.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion apis/database/v1beta1/zz_generated.managed.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions apis/generate.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ limitations under the License.
//go:generate go run -tags generate sigs.k8s.io/controller-tools/cmd/controller-gen object:headerFile=../hack/boilerplate.go.txt paths=./... crd:trivialVersions=true output:artifacts:config=../config/crd

// Generate crossplane-runtime methodsets (resource.Claim, etc)
//go:generate go run -tags generate github.com/crossplaneio/crossplane-tools/cmd/angryjet generate-methodsets --header-file=../hack/boilerplate.go.txt ./...
//go:generate go run -tags generate github.com/crossplane/crossplane-tools/cmd/angryjet generate-methodsets --header-file=../hack/boilerplate.go.txt ./...

package apis

import (
_ "github.com/crossplaneio/crossplane-tools/cmd/angryjet" //nolint:typecheck
_ "sigs.k8s.io/controller-tools/cmd/controller-gen" //nolint:typecheck
_ "github.com/crossplane/crossplane-tools/cmd/angryjet" //nolint:typecheck
_ "sigs.k8s.io/controller-tools/cmd/controller-gen" //nolint:typecheck
)
4 changes: 2 additions & 2 deletions apis/identity/v1alpha3/iamrole_referencers.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ package v1alpha3
import (
"context"

"github.com/crossplaneio/crossplane-runtime/pkg/resource"
"github.com/crossplane/crossplane-runtime/pkg/resource"
corev1 "k8s.io/api/core/v1"
"k8s.io/apimachinery/pkg/types"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"

kerrors "k8s.io/apimachinery/pkg/api/errors"

Expand Down
6 changes: 3 additions & 3 deletions apis/identity/v1alpha3/iamrole_referencers_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ import (
runtime "k8s.io/apimachinery/pkg/runtime"
"sigs.k8s.io/controller-runtime/pkg/client"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplaneio/crossplane-runtime/pkg/resource"
"github.com/crossplaneio/crossplane-runtime/pkg/test"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplane/crossplane-runtime/pkg/resource"
"github.com/crossplane/crossplane-runtime/pkg/test"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions apis/identity/v1alpha3/iamrole_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import (

"github.com/aws/aws-sdk-go-v2/service/iam"

aws "github.com/crossplaneio/stack-aws/pkg/clients"
aws "github.com/crossplane/stack-aws/pkg/clients"

runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
)

// IAMRoleParameters define the desired state of an AWS IAM Role.
Expand Down
6 changes: 3 additions & 3 deletions apis/identity/v1alpha3/iamrolepolicyattachment_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ import (
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"

"github.com/aws/aws-sdk-go-v2/service/iam"
runtimev1alpha1 "github.com/crossplaneio/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplaneio/crossplane-runtime/pkg/resource"
runtimev1alpha1 "github.com/crossplane/crossplane-runtime/apis/core/v1alpha1"
"github.com/crossplane/crossplane-runtime/pkg/resource"

"github.com/pkg/errors"

aws "github.com/crossplaneio/stack-aws/pkg/clients"
aws "github.com/crossplane/stack-aws/pkg/clients"
)

// Error strings
Expand Down
4 changes: 2 additions & 2 deletions apis/identity/v1alpha3/iamrolepolicyattachment_types_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
"github.com/google/go-cmp/cmp"
"github.com/pkg/errors"

"github.com/crossplaneio/crossplane-runtime/pkg/resource"
"github.com/crossplaneio/crossplane-runtime/pkg/test"
"github.com/crossplane/crossplane-runtime/pkg/resource"
"github.com/crossplane/crossplane-runtime/pkg/test"
)

var _ resource.AttributeReferencer = (*IAMRoleNameReferencerForIAMRolePolicyAttachment)(nil)
Expand Down
2 changes: 1 addition & 1 deletion apis/identity/v1alpha3/identity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"github.com/aws/aws-sdk-go-v2/service/iam"
"github.com/onsi/gomega"

aws "github.com/crossplaneio/stack-aws/pkg/clients"
aws "github.com/crossplane/stack-aws/pkg/clients"
)

func TestMain(m *testing.M) {
Expand Down
2 changes: 1 addition & 1 deletion apis/identity/v1alpha3/zz_generated.managed.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit e1e5d26

Please sign in to comment.