-
Notifications
You must be signed in to change notification settings - Fork 57
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
fixes to push docker image #688
Conversation
@@ -45,7 +45,7 @@ func TestE2E(t *testing.T) { | |||
b := make([]byte, 12) | |||
_, _ = rand.Read(b) //nolint:staticcheck // Don't need crypto here. | |||
tag := hex.EncodeToString(b) | |||
projectimage := "pulumi/pulumi-kubernetes-operator-v2:" + tag | |||
projectimage := "pulumi/pulumi-kubernetes-operator:" + tag |
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 worry about folks currently using pulumi/pulumi-kubernetes-operator:latest
. This has the potential to break people, or at least require some manual migration steps -- assuming we eventually publish v2 to latest.
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 sympathize. My plan is to NOT apply a suffix, but also NOT push to latest
. Then, in coming weeks, we will see whether usage of latest
tapers off.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## v2 #688 +/- ##
=======================================
Coverage 49.11% 49.11%
=======================================
Files 26 26
Lines 2877 2877
=======================================
Hits 1413 1413
Misses 1287 1287
Partials 177 177 ☔ View full report in Codecov by Sentry. |
Proposed changes
Related issues (optional)