-
Notifications
You must be signed in to change notification settings - Fork 55
feat(VpcEndpointServiceConfiguration): vpc endpoint service configuration controller added #134
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
Conversation
Hi @ib-ak. Thanks for your PR. I'm waiting for a aws-controllers-k8s member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
# Routes.GatewayId: | ||
# references: | ||
# resource: InternetGateway | ||
# path: Status.InternetGatewayID | ||
# Routes.NatGatewayId: | ||
# references: | ||
# resource: NATGateway | ||
# path: Status.NATGatewayID | ||
# Routes.TransitGatewayId: | ||
# references: | ||
# resource: TransitGateway | ||
# path: Status.TransitGatewayID | ||
# Routes.VpcEndpointId: | ||
# references: | ||
# resource: VPCEndpoint | ||
# path: Status.VPCEndpointID |
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 think you may have accidentally commented these out :) You need to uncomment this back..
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.
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.
@ib-ak OK, understood. However, we won't be able to address this PR until that issue has been fixed, since this results in backwards-incompatible changes to the RouteTable CRD...
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.
@jaypipes We have an open issue where RouteTable blocks the build. I have linked it here.
/ok-to-test |
Yeah we'll have to fix the code-generator part that's breaking ec2 - (or at least get rid of the panic). /cc @RedbackThomson |
/retest |
/test all |
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.
Awesome start on this! Thank you!
We just need to fix e2e tests and things should work smoothly
|
||
from acktest.resources import random_suffix_name | ||
from acktest.k8s import resource as k8s | ||
from acktest.bootstrapping.elbv2 import NetworkLoadBalancer |
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.
@ib-ak This is not something we have in acktest for now. Do you mind PRing to add NetworkLoadBalancer
?
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.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: A-Hilaly, ib-ak The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
@ib-ak: The following tests failed, say
Full PR test history. Your PR dashboard. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Issues go stale after 180d of inactivity. |
… functionality (#172) Related to: - aws-controllers-k8s/community#1711 Description of changes: This is the continuation of PR #134 (Credit to @ib-ak !). This PR: - Adds the `VPCEndpointService` custom resource from the code-generator - Adds the field `spec.allowedPrincipals` of type `[]string`, which allows the user to specify a list of ARNs to share the VPC Endpoint Service with. Any Principals added to this list will have the VPC Endpoint Service shared with them. This field also ensures that Principals that are removed from the list have the VPC Endpoint Service share removed. - Tests are added for creation/deletion and for adding/deleting Principals to the Allowed List By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
… functionality (aws-controllers-k8s#172) Related to: - aws-controllers-k8s/community#1711 Description of changes: This is the continuation of PR aws-controllers-k8s#134 (Credit to @ib-ak !). This PR: - Adds the `VPCEndpointService` custom resource from the code-generator - Adds the field `spec.allowedPrincipals` of type `[]string`, which allows the user to specify a list of ARNs to share the VPC Endpoint Service with. Any Principals added to this list will have the VPC Endpoint Service shared with them. This field also ensures that Principals that are removed from the list have the VPC Endpoint Service share removed. - Tests are added for creation/deletion and for adding/deleting Principals to the Allowed List By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
Issue #, if available:
1711
Description of changes
vpc endpoint service configuration controller added
RouteTable fields disabled to make it work.
Functionality
Tests
relevant test case added. Separate PR raised to update test-infra. Please merge the test-infra PR and update the requirements.txt before running the test cases.
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.