-
Notifications
You must be signed in to change notification settings - Fork 94
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
test/aws: disable, enable and fix tests #2262
test/aws: disable, enable and fix tests #2262
Conversation
Apparently the creation of a bucket is not idempotent, double-creation has thrown an error. This changed the logic to only try to create it in case it doesn't exists. Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
The TestAwsCreatePeerPodContainerWithInvalidAlternateImage has a wrong expected error message. Fixed it. Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
The test for ConfigMap is passing, so let's re-enable it. Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
The TestAwsCreateNginxDeployment is no longer passing. Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
272b666
to
7c628f7
Compare
To test init containers on AWS peer pods. Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
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. Thanks!
@@ -101,13 +101,19 @@ func TestAwsDeletePod(t *testing.T) { | |||
} | |||
|
|||
func TestAwsCreateNginxDeployment(t *testing.T) { | |||
t.Skip("Test not passing") |
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.
Hmm, isn't this a basic test? Any idea why is it failing ?
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.
Thanks @wainersm. I was just curious :-) ..
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
A couple of changes I needed to pass the e2e tests for AWS.