-
Notifications
You must be signed in to change notification settings - Fork 206
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
docs: add clarity for creating own VPC resource provider #716
Conversation
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.
@zjaco13 Thanks for the PR, have few minor comments.
docs/resource-providers/index.md
Outdated
@@ -40,7 +40,22 @@ Example implementations: | |||
class VpcResourceProvider implements ResourceProvider<IVpc> { | |||
provide(context: ResourceContext): IVpc { | |||
const scope = context.scope; // stack | |||
... |
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.
I would rather add this is as a separate example that over writing on existing one.
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!
@@ -14,7 +14,7 @@ import * as blueprints from '@aws-quickstart/eks-blueprints'; | |||
|
|||
const app = new cdk.App(); | |||
|
|||
const addOn = new blueprints.addons.ClusterAutoscalerAddOn(); | |||
const addOn = new blueprints.addons.ClusterAutoScalerAddOn(); |
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 changed here?
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.
changed the s in ClusterAutoscalerAddOn to uppercase, since that's how you have to call the addon
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.
@zjaco13 please see my comment and let me know if you have any questions. @elamaran11 please take a look at my comment as well.
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.
LGTM. @elamaran11 please add review and merge if all good.
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.
LGTM
/do-e2e-tests |
Issue #, if available: #632
Description of changes:
Added documentation to explain creating VPC Resource Providers and added links to other resource providers
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.