Show all revisions when run service describe -v#790
Show all revisions when run service describe -v#790knative-prow-robot merged 1 commit intoknative:masterfrom
service describe -v#790Conversation
|
Hi @MIBc. Thanks for your PR. I'm waiting for a knative 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. DetailsInstructions 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. |
|
/ok-to-test |
rhuss
left a comment
There was a problem hiding this comment.
Thanks for the PR, good find !
I wonder however if we could just change the signature to pass by-value not by-reference, so that a deep copy would not be necessary. Tbh, I don't yet understand why (and if) the called method modifies the revision
| } | ||
| revisionsSeen.Insert(revision.Name) | ||
| newDesc, err := newRevisionDesc(&revision, nil, service) | ||
| newDesc, err := newRevisionDesc(revision.DeepCopy(), nil, service) |
There was a problem hiding this comment.
Couldn't we just past the revision by calue, not by reference ? I think this would be even cleaner. wdyt ?
There was a problem hiding this comment.
That will modify the parameter type in newRevisionDesc function. It brings some changes which need to test.
maximilien
left a comment
There was a problem hiding this comment.
Minor comment. Otherwise LGTM
|
|
||
| // Prepare service | ||
| expectedService := createTestService("foo", []string{"rev1", "rev2"}, goodConditions()) | ||
| expectedService := createTestService("foo", []string{"rev1", "rev2", "rev3"}, goodConditions()) |
There was a problem hiding this comment.
Do we have a test for the base case with one revision? I think there is but worth double checking. Thx
There was a problem hiding this comment.
We have the base case with one revision.
I found this code would cover the revision. But not create a new |
I think I understand (excellent find by the way!), but if we don't move the pointer but the value to the function for extracting the revision description, this should be similar to a copy, or ? (not a deep copy, but I think a shallow copy should be good enough, too). So changing that function signature from taking a point to taking a value should be good enough, i think. |
* The `kn service describe -v` command shows repetitive revisions, because the revision would be covered by next one.
|
The following is the coverage report on the affected files.
|
|
The reason we don't use deep copy is that it cost more time. Right? |
|
/retest |
1 similar comment
|
/retest |
I'm not really worried about costs, it's just that I think its cleaner and simpler, but I'm not dogmatic. If you think a deep copy has other advantages or is more idiomatic, I'm happy, too ;) |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: maximilien, MIBc, rhuss The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
* The `kn service describe -v` command shows repetitive revisions, because the revision would be covered by next one.
* (refactor) address the e2e extract / refactor of issue #763 (#765) * (refactor) address the e2e extract / refactor of issue #763 * various updates to address reviewers feedback * renamed lib/test/integration to lib/test and package to test Signed-off-by: Roland Huß <roland@ro14nd.de> # Conflicts: # CHANGELOG.adoc # test/e2e/service_export_import_apply_test.go # test/e2e/trigger_test.go * fix(plugin): Fix plugin lookup with file ext on Windows (#774) * fix(plugin): Fix plugin lookup with file ext on Windows * chore: Update changelog * fix: Reflect review feedback * fix: Reflect review feedback and add future todo Signed-off-by: Roland Huß <roland@ro14nd.de> # Conflicts: # CHANGELOG.adoc * fix(issue #762): correct error message when updating service (#778) * fix(issue #762): correct error message when updating service * correct message when updating service and passing many names * fix issue with TestServiceUpdateWithMultipleImages running create vs update * * added TestServiceDescribeWithMultipleNames * added TestServiceCreateWithMultipleNames * fix error message for service delete since many names can be passed * Use vendored deps while running e2e locally (#783) Also set GO111MODULE=on unconditionally * Update sink binding create usage string (#785) * Add "--target-utilization" to manage "autoscaling.knative.dev/targetUtilizationPercentage" annotation (#788) * Support setting "autoscaling.knative.dev/targetUtilizationPercentage" annotation. Signed-off-by: Roland Huß <roland@ro14nd.de> # Conflicts: # test/e2e/service_options_test.go * Remove the delete propagation flag (#770) * Remove the delete propagation flag In it's current state it now takes me about 25 seconds for the `kn delete` to complete. Before #682 it used to be almost immediate. This is because we now pass in the `DeletePropagationBackground` flag. I believe this is a mistake, not only because of the 20+ seconds of additional time to delete things, but IMO the CLI should talk to the server in the same way regardless of the --wait flag. That flag should just be a CLI thing to indicate if the user wants the CLI to wait for the server to complete but not HOW the server should do the delete. Signed-off-by: Doug Davis <dug@us.ibm.com> * try just tweaking the --no-wait flag Signed-off-by: Doug Davis <dug@us.ibm.com> * Fix error when output is set to name (#775) * fix error when output is set to name * add e2e test * change to flags/listprint.go Signed-off-by: Roland Huß <roland@ro14nd.de> # Conflicts: # test/e2e/basic_workflow_test.go * Show all revisions when run `service describe -v` (#790) * The `kn service describe -v` command shows repetitive revisions, because the revision would be covered by next one. * Fix resource listing with -oname flag (#799) * Fix resource listing with -oname flag * add e2e tests Signed-off-by: Roland Huß <roland@ro14nd.de> # Conflicts: # test/e2e/ping_test.go # test/e2e/revision_test.go # test/e2e/route_test.go # test/e2e/source_apiserver_test.go # test/e2e/source_binding_test.go # test/e2e/trigger_test.go * Make wait, no-wait and async flags per bool var CLI convention (#802) * Make wait, no-wait and async flags per bool var CLI convention Fixes #800 - Deprecated bool vars can be supported for CLI convention - Bind --async flag value to --no-wait - Only one flag among [wait, no-wait, async] can be provided, else raise an error * Simplify conditionals * Add unit tests for deprecated flag async * Fix a typo * e2e: Foreground delete for revisions and services in e2e (#794) * e2e: Foreground delete for revisions and services in e2e to avoid any race conditions and flakes * Use --wait instead of --no-wait=false Signed-off-by: Roland Huß <roland@ro14nd.de> # Conflicts: # test/e2e/basic_workflow_test.go # test/e2e/revision_test.go * e2e: Run tekton e2e against pipeline v0.11.1 (#803) * Use buildah task from master branch and paramterize FORMAT * Configure pipeline v0.11.1 * DNM: Run tekton e2e in this PR * Revert "DNM: Run tekton e2e in this PR" This reverts commit 903f5be. * Update CHANGELOG for v0.13.2 (#804) * Pin serving to v0.13.2 and update version command (#797) * Pin serving v0.13.2 dep to v0.13.2 * Update version command now points to serving v0.13.2 and eventing v0.13.6 * Copy go.sum as generated in CI Signed-off-by: Roland Huß <roland@ro14nd.de> # Conflicts: # go.mod # go.sum # vendor/modules.txt * add missing vendored files * fixed error reporting for traffics tests * Updated test * fix formatting * e2e for service export (#739) * e2e for service export * e2e for service export * e2e for service export * e2e for service export * e2e for service export Signed-off-by: Roland Huß <roland@ro14nd.de> # Conflicts: # test/e2e/service_export_import_apply_test.go Co-authored-by: dr.max <maxim@us.ibm.com> Co-authored-by: David Simansky <dsimansk@redhat.com> Co-authored-by: Navid Shaikh <nshaikh@redhat.com> Co-authored-by: Lv Jiawei <lvjiawei@cmss.chinamobile.com> Co-authored-by: Doug Davis <dug@us.ibm.com> Co-authored-by: Ying Chun Guo <guoyingc@cn.ibm.com> Co-authored-by: Murugappan Chetty <itsmurugappan@gmail.com>
This PR contains the following updates: | Package | Change | |---|---| | quay.io/konflux-ci/tekton-catalog/task-build-image-index | `3bf6e4e` -> `ba7fbed` | | quay.io/konflux-ci/tekton-catalog/task-buildah-remote-oci-ta | `bd10355` -> `cd9ef1e` | | quay.io/konflux-ci/tekton-catalog/task-ecosystem-cert-preflight-checks | `1f151e0` -> `e106b61` | | quay.io/konflux-ci/tekton-catalog/task-prefetch-dependencies-oci-ta | `29869c6` -> `2229057` | | quay.io/konflux-ci/tekton-catalog/task-sast-snyk-check-oci-ta | `fe5e5ba` -> `322c86a` | | quay.io/konflux-ci/tekton-catalog/task-source-build-oci-ta | `f1c0743` -> `7a36cc2` | --- ### Configuration 📅 **Schedule**: Branch creation - "after 5am on saturday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- To execute skipped test pipelines write comment `/ok-to-test`. This PR has been generated by [MintMaker](https://redirect.github.com/konflux-ci/mintmaker) (powered by [Renovate Bot](https://redirect.github.com/renovatebot/renovate)). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS43LjAtcnBtIiwidXBkYXRlZEluVmVyIjoiNDEuNy4wLXJwbSIsInRhcmdldEJyYW5jaCI6InJlbGVhc2UtdjEuMTYiLCJsYWJlbHMiOltdfQ==--> Signed-off-by: red-hat-konflux-kflux-prd-rh02 <190377777+red-hat-konflux-kflux-prd-rh02[bot]@users.noreply.github.com> Co-authored-by: red-hat-konflux-kflux-prd-rh02[bot] <190377777+red-hat-konflux-kflux-prd-rh02[bot]@users.noreply.github.com>
Fixes: ##789
kn service describe -vcommand shows repetitive revisions, becausethe revision would be covered by next one.