-
Notifications
You must be signed in to change notification settings - Fork 378
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
chore: dynamically generate GENERATED_SERVICES var #1008
chore: dynamically generate GENERATED_SERVICES var #1008
Conversation
The force push commit added a more secure regex for the excludes. |
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.
Thanks @dwerder ! LGTM with only one thing to address. Great work!
CODE_GENERATION.md
Outdated
If `apis/<serviceid>` is created from scratch, please add the new service name to the list called GENERATED_SERVICES in [Makefile](https://github.com/crossplane/provider-aws/blob/master/Makefile#L10). | ||
|
||
### Makefile | ||
|
||
```bash | ||
- GENERATED_SERVICES="apigatewayv2" | ||
+ GENERATED_SERVICES="apigatewayv2,<serviceid>" | ||
``` | ||
The serviceids are fetch from the paths of the generator-config.yaml automatically. | ||
|
||
If this step fails for some reason, please raise an issue in [code-generator](https://github.com/aws-controllers-k8s/code-generator) | ||
and mention that you're using Crossplane pipeline. |
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.
Let's remove the whole section as they don't need to know about this at all thanks to your discovery implementation.
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.
Done
Signed-off-by: Daniel Werdermann <[email protected]>
…eplication-configuration-key-ref feat(ref): add kms ref/selector in replication configuration
Signed-off-by: Daniel Werdermann [email protected]
Description of your changes
The variable in the Makefile is now generated from the paths of the generatec-config.yaml files. So no more editingof the Makefile and no merge conflicts.
Fixes #861
Fixes #862
I have:
make reviewable test
to ensure this PR is ready for review.How has this code been tested
make reviewable
works without changes.