-
Notifications
You must be signed in to change notification settings - Fork 928
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
feat: Add move-route command to cf cli #2302
Conversation
Co-authored-by: Shwetha Gururaj <[email protected]>
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
I may be behind the times, but I think we decided to change this command to |
Based on this conversation i believe you are correct |
Co-authored-by: Shwetha Gururaj <[email protected]>
thanks @Gerg & @MerricdeLauney . @gururajsh and I updated to |
Co-authored-by: Shwetha Gururaj <[email protected]>
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
* feat: Add transfer-route-owner command to cf cli Co-authored-by: Shwetha Gururaj <[email protected]> * feat: update repository variable. Update workflow action * fix: remove windows 2016, swap to windows latest. Fix relative file path * chore: windows values * chore: swap to Rel instead of join * chore: main dir * chore: join on current dir * chore: clean path first * chore: try from slash * chore: remove dot syntax * chore: swap to move-route Co-authored-by: Shwetha Gururaj <[email protected]> * chore: windows tests again * chore: remove test println * chore: update path to /relationships/space from transferowner Co-authored-by: Shwetha Gururaj <[email protected]> * Change display text * Remove focus * Fix typo * Send non-array data in requestBody * Change message ordering * Create shared domain instead of private Co-authored-by: Shwetha Gururaj <[email protected]>
@@ -12,7 +12,7 @@ jobs: | |||
analyze: | |||
name: Analyze | |||
runs-on: ubuntu-latest | |||
if: ${{ github.action_repository == 'cloudfoundry/cli' }} | |||
if: ${{ github.repository == 'cloudfoundry/cli' }} |
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'd prefer having GitHub Actions related changes in a separate PR, so we can easily synchronize these changes with other branches.
@@ -83,9 +79,8 @@ jobs: | |||
strategy: | |||
matrix: | |||
os: | |||
- windows-2022 | |||
- windows-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'm curious why we unlocked this.
* feat: Add transfer-route-owner command to cf cli Co-authored-by: Shwetha Gururaj <[email protected]> * feat: update repository variable. Update workflow action * fix: remove windows 2016, swap to windows latest. Fix relative file path * chore: windows values * chore: swap to Rel instead of join * chore: main dir * chore: join on current dir * chore: clean path first * chore: try from slash * chore: remove dot syntax * chore: swap to move-route Co-authored-by: Shwetha Gururaj <[email protected]> * chore: windows tests again * chore: remove test println * chore: update path to /relationships/space from transferowner Co-authored-by: Shwetha Gururaj <[email protected]> * Change display text * Remove focus * Fix typo * Send non-array data in requestBody * Change message ordering * Create shared domain instead of private Co-authored-by: Shwetha Gururaj <[email protected]> Co-authored-by: Peter Levine <[email protected]>
Co-authored-by: Shwetha Gururaj [email protected]
This is an intro PR for the upcoming changes made by the platform interfaces team. This PR will not be merged until sign off and successful run of integration test below once we have an environment with cf-api:edge.
Does this PR modify CLI v6, CLI v7, or CLI v8?
v8
Description of the Change
Adding the
cf transfer-route-owner
command to the cf cliWhy Is This PR Valuable?
When users share a route, ownership is maintained by the originating space. This new command allows transfer of ownership.
Why Should This Be In Core?
This command is needed when a route is shared and needs to be deleted or modified by the target space.
Applicable Issues
List any applicable Github Issues here
How Urgent Is The Change?
Not urgent, still working with the Platform Interface team on definition.
Other Relevant Parties
CF API transfer route owner endpoint is required