Skip to content

Commit

Permalink
Move Code of Conduct to a separate file, update jet-provider referenc…
Browse files Browse the repository at this point in the history
…es, update license reference

Signed-off-by: ezgidemirel <ezgidemirel91@gmail.com>
ezgidemirel committed Oct 14, 2022
1 parent f6b62b4 commit edbd1ec
Showing 4 changed files with 16 additions and 12 deletions.
3 changes: 3 additions & 0 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## Code of Conduct

Upjet is under [the Apache 2.0 license](LICENSE) with [notice](LEGAL_NOTICE).
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -14,10 +14,6 @@ Feel free to test the following Crossplane providers built using Upjet:
* [Provider Azure](https://github.com/upbound/provider-azure/releases)
* [Provider GCP](https://github.com/upbound/provider-gcp/releases)

**NOTE**: Upjet is in its very early stages and we're making many changes that
can affect the output and the runtime. Please check the generated code before
running in production.

## Generating a New Provider Using Upjet

Please see [this guide](docs/generating-a-provider.md) for detailed steps on how
@@ -56,11 +52,16 @@ license restrictions.
* [Kubeform](https://github.com/kubeform/kubeform)
* [Terraform Operator](https://github.com/isaaguilar/terraform-operator)

## Code of Conduct

upjet adheres to the [Code of
Conduct](https://github.com/crossplane/crossplane/blob/master/CODE_OF_CONDUCT.md)
as the core Crossplane project.
## Contributing

* [Generating a Provider](docs/generating-a-provider.md)
* [Configuring a Resource](docs/configuring-a-resource.md)
* [Reference Generation](docs/reference-generation.md)
* [New v1beta1 Resources](docs/new-v1beta1-resource.md)
* [Moving Resources to v1beta1](docs/moving-resources-to-v1beta1.md)
* [Testing Instructions](docs/testing-instructions.md)
* [Testing Resources by Using Uptest](docs/testing-resources-by-using-uptest.md)

## Licensing

6 changes: 3 additions & 3 deletions docs/configuring-a-resource.md
Original file line number Diff line number Diff line change
@@ -703,9 +703,9 @@ So, an interface must be passed to the related configuration field for adding in
[Description]: https://github.com/hashicorp/terraform-plugin-sdk/blob/e3325b095ef501cf551f7935254ce942c44c1af0/helper/schema/schema.go#L120
[Optional]: https://github.com/hashicorp/terraform-plugin-sdk/blob/e3325b095ef501cf551f7935254ce942c44c1af0/helper/schema/schema.go#L80
[Computed]: https://github.com/hashicorp/terraform-plugin-sdk/blob/e3325b095ef501cf551f7935254ce942c44c1af0/helper/schema/schema.go#L139
[tags_all for jet AWS resources]: https://github.com/crossplane-contrib/provider-jet-aws/blob/c045bae7736da4a9cc80e7fc0fc4cfcd78de60df/config/overrides.go#L86
[boot_disk.initialize_params.labels]: https://github.com/crossplane-contrib/provider-jet-gcp/blob/f90456c4fc032c021c8179ef061f4803bc01b488/config/compute/config.go#L157
[AWS region]: https://github.com/crossplane-contrib/provider-jet-aws/blob/a5b6a6fea65634c475a84583e1e1776a048a0df9/config/overrides.go#L325
[tags_all for jet AWS resources]: https://github.com/upbound/provider-aws/blob/main/config/overrides.go#L62
[boot_disk.initialize_params.labels]: https://github.com/upbound/provider-gcp/blob/main/config/compute/config.go#L121
[AWS region]: https://github.com/upbound/provider-aws/blob/main/config/overrides.go#L32
[this figure]: images/upjet-externalname.png
[Initializers]: #initializers
[InitializerFns]: https://github.com/upbound/upjet/blob/ae78a0a4c438f01717002e00fac761524aa6e951/pkg/config/resource.go#L289
2 changes: 1 addition & 1 deletion pkg/config/provider.go
Original file line number Diff line number Diff line change
@@ -67,7 +67,7 @@ type Provider struct {
ShortName string

// ModulePath is the go module path for the Crossplane provider repo, e.g.
// "github.com/crossplane-contrib/provider-jet-aws"
// "github.com/upbound/provider-aws"
ModulePath string

// BasePackages keeps lists of base packages that needs to be registered as

0 comments on commit edbd1ec

Please sign in to comment.