-
Notifications
You must be signed in to change notification settings - Fork 4k
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
feat(opensearch): add support for latest amazon opensearch service 2.3 #22943
Conversation
4346e92
to
eecb475
Compare
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.
Thank you for your contribution!
The minimal changes in the snapshot of the integration test usually indicates that the tests weren't actually run. Please revert the change in the snapshot and run yarn integ --update-on-failed
to validate this change and to produce the new snapshots. I also notice that the integ test isn't using the new IntegTest construct. Please update that.
eecb475
to
d2313a4
Compare
Pull request has been modified.
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.
The pull request linter has failed. See the aws-cdk-automation comment below for failure reasons. If you believe this pull request should receive an exemption, please comment and provide a justification.
d2313a4
to
99d7141
Compare
Thanks @TheRealAmazonKendra for the review, I tried using the new
Any idea what it could be? I tried looking it up without being able to find anything. |
@Mergifyio update |
✅ Branch has been successfully updated |
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 my comments inline.
We had a bug that was causing your test failures. I updated your branch to be up-to-date with main
so the fix is in there now. You should now be able to run yarn integ --update-on-failed
and get the correct output. Note that you may need to clean the generated files from the build because the test runner is expecting to see certain files that don't exist due to the update in stack name and using the new IntegTest
construct.
Please let me know if you have any questions about this.
9753d8a
to
e1729c5
Compare
✅ Updated pull request passes all PRLinter validations. Dissmissing previous PRLinter review.
e1729c5
to
fe52135
Compare
Pull request has been modified.
@TheRealAmazonKendra Trying again, it took me a while to be able to run the tests with Anyway, it worked on my machine now and I committed everything, but I ask you to please check commits (1, 2) because I am not sure if these files should be committed. Of course the rest of the commits should be checked too. |
fe52135
to
7e63111
Compare
This PR cannot be merged because it has conflicts. Please resolve them. The PR will be considered stale and closed if it remains in an unmergeable state. |
@Mergifyio update |
❌ Base branch update has failedmerge conflict between base and head |
62a6fd5
to
7bfcec2
Compare
7bfcec2
to
af731e4
Compare
af731e4
to
0f70273
Compare
@@ -183,8 +190,14 @@ test('grants kms permissions if needed', () => { | |||
|
|||
}); | |||
|
|||
test('minimal example renders correctly', () => { | |||
new Domain(stack, 'Domain', { version: defaultVersion }); | |||
each([ |
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.
Fantastic, thank you!
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
Thank you for contributing! Your pull request will be updated from main and then merged automatically (do not update manually, and be sure to allow changes to be pushed to your fork). |
aws#22943) fixes aws#22942 Description: AWS Launched the support for Amazon OpenSearch Service 2.3 as per the announcement here: https://aws.amazon.com/about-aws/whats-new/2022/11/amazon-opensearch-service-supports-opensearch-version-2-3/ AWS CDK does not support the latest version yet, and can not create an OpenSearch cluster with CDK using 2.3. ---- ### All Submissions: * [x] Have you followed the guidelines in our [Contributing guide?](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) ### Adding new Unconventional Dependencies: * [ ] This PR adds new unconventional dependencies following the process described [here](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md/#adding-new-unconventional-dependencies) ### New Features * [ ] Have you added the new feature to an [integration test](https://github.com/aws/aws-cdk/blob/main/INTEGRATION_TESTS.md)? * [ ] Did you use `yarn integ` to deploy the infrastructure and generate the snapshot (i.e. `yarn integ` without `--dry-run`)? *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
fixes #22942
Description:
AWS Launched the support for Amazon OpenSearch Service 2.3 as per the announcement here: https://aws.amazon.com/about-aws/whats-new/2022/11/amazon-opensearch-service-supports-opensearch-version-2-3/
AWS CDK does not support the latest version yet, and can not create an OpenSearch cluster with CDK using 2.3.
All Submissions:
Adding new Unconventional Dependencies:
New Features
yarn integ
to deploy the infrastructure and generate the snapshot (i.e.yarn integ
without--dry-run
)?By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license