-
Notifications
You must be signed in to change notification settings - Fork 25
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 deploy e2e tester image functionality to new e2e #79
Conversation
Pull Request Test Coverage Report for Build 5868909783
💛 - Coveralls |
// https://github.com/Azure/azure-cli/blob/5f9a8fa25cc1c980ebe5e034bd419c95a1c578e2/src/azure-cli/azure/cli/command_modules/acr/build.py#L25 | ||
cmd := exec.Command("az", "acr", "build", "--registry", a.name, "--image", imageName, ".") | ||
cmd.Stdout = newLogWriter(lgr, "building and pushing acr image: ", nil) | ||
cmd.Stderr = newLogWriter(lgr, "building and pushing acr image: ", to.Ptr(slog.LevelError)) |
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.
love to see the slog
package in the wild
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.
And the slog
package loves to see you
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.
slog
be with you
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.
few requests but nothing major, lgtm for the most part
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
/ok-to-test sha=d8bfea1 |
Description
Part 2 of some e2e improvements. This is targeting a new e2e framework and does not impact the current e2e environment (yet). The plan is to move all the e2e tests over to this new framework in the next pr and replace the existing one with this new one.
This change makes it so we can easily deploy an e2e testing image to each testing infrastructure cluster. This e2e testing image must run inside clusters to accommodate all cluster options (namely private clusters).
Additionally, this PR sets up the ability for e2e tests to be run in separate GitHub jobs.
We want e2e tests to run in a separate job for each phase with separate jobs for each infrastructure. This is to ensure that if we need to manually retry a test it it's simple and we don't need to retry everything. It also makes it easy to detect errors.
Type of change
Please delete options that are not relevant.
How Has This Been Tested?
Locally
Checklist: