-
Notifications
You must be signed in to change notification settings - Fork 50
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
Add Subnet resource #4
Conversation
Hi @brycahta. 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. |
return boto3.client("ec2") | ||
|
||
@pytest.fixture(scope="module") | ||
def vpc_resource(): |
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.
My intent is to move this to a helpers.py
file once I get more resources implemented. This way I can test VPC separately, then have another VPC (just one) to be used by other tests. Also, this should mitigate concerns with vpc quotas when testing locally.
Looks straightforward. Do your ReadMany changes in the generator not help here? |
assert k8s.get_resource_exists(ref) | ||
|
||
assert k8s.assert_condition_state_message( | ||
ref, "ACK.Terminal", "True", "The vpc ID 'InvalidVpcId' does not exist" |
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.
++
/ok-to-test |
Yeah, they do but only 1/2 are merged right now (working on revision) and it was unclear to me if I should wait until another release is cut with those features or not. Any suggestions? |
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 👍
@@ -1138,6 +1182,7 @@ type ImportVolumeTaskDetails struct { | |||
|
|||
// Describes an instance. | |||
type Instance struct { | |||
AmiLaunchIndex *int64 `json:"amiLaunchIndex,omitempty"` |
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.
not sure, but should this be AMILaunchIndex
?
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
Ship it!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: A-Hilaly, brycahta, RedbackThomson 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 |
Issue: #489
Changes
Testing
go run
✅make kind-test
✅