Skip to content
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

fleet: add wait command, code refactor & update tests #5327

Merged
merged 48 commits into from
Sep 13, 2022
Merged
Changes from 1 commit
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
d1bab98
initial: azdev extension creation
Jul 26, 2022
54c14c0
update min cli supported version
Jul 26, 2022
7d1d359
add fleet client sdk
Jul 26, 2022
b90034c
all fleet commands with help and params
Jul 28, 2022
7e00779
update git code owners
Jul 28, 2022
f9c99d4
update git code owners
Jul 28, 2022
8482100
nit: remove redundancy
Aug 11, 2022
26c4be9
add live and unit tests
Aug 11, 2022
c534881
file cleanup
Aug 11, 2022
57c83f8
file cleanup
Aug 11, 2022
bea74bb
file cleanup
Aug 11, 2022
2191b34
file cleanup
Aug 11, 2022
d14e92e
file cleanup
Aug 11, 2022
ca07417
add fleet list credentials command
Aug 15, 2022
326cfa9
Merge pull request #6 from pdaru/fleet-extension
pdaru Aug 15, 2022
6eb1b32
update live test
Aug 15, 2022
d683af5
Merge pull request #7 from pdaru/fleet-extension
pdaru Aug 15, 2022
14fcd29
file clean up
Aug 15, 2022
ce4a579
Merge pull request #8 from pdaru/fleet-extension
pdaru Aug 15, 2022
57f5858
add GET,PATCH commands & update tests
Aug 19, 2022
9dd68b2
Merge pull request #9 from pdaru/fleet-extension
pdaru Aug 19, 2022
4271e5c
update style
Aug 19, 2022
12ff9b0
Merge pull request #10 from pdaru/fleet-extension
pdaru Aug 19, 2022
817f253
add licence
Aug 19, 2022
6d0ad33
Merge pull request #11 from pdaru/fleet-extension
pdaru Aug 19, 2022
9c6013c
add licence
Aug 19, 2022
4f43721
fix checks
Aug 19, 2022
5c7c1f3
add fleet to service_name
Aug 19, 2022
82e0f3f
update owner
Aug 19, 2022
b939dca
update test recording
Aug 19, 2022
4a28a64
update test
Aug 19, 2022
45b29e9
check fix
Aug 22, 2022
52e6993
update recording
Aug 23, 2022
1fcd3b7
update command names as per convention
Aug 23, 2022
b27b45b
update tests
Aug 23, 2022
bcd9ccf
update tests
Aug 23, 2022
69e0c87
update setup url
pdaru Aug 23, 2022
b820ec0
update setup python ver
pdaru Aug 23, 2022
2d4e839
fix bugs
Aug 23, 2022
a8ab5cd
Merge branch 'Azure:main' into main
pdaru Sep 1, 2022
7345ce2
code refactor, add wait command & update tests
Sep 8, 2022
6bc15ab
fix style
Sep 8, 2022
e58e7fe
Merge branch 'Azure:main' into main
pdaru Sep 8, 2022
ecc5377
fix test file
Sep 8, 2022
8269723
fix test file
Sep 8, 2022
2aeb170
fix test file
Sep 8, 2022
0b5ac25
fix test file
Sep 8, 2022
6646c9b
update min version
Sep 8, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
file cleanup
  • Loading branch information
Pankil Daru committed Aug 15, 2022
commit d14e92e22060bffb121f325a0323d4f3b0f03627
4 changes: 1 addition & 3 deletions src/fleet/azext_fleet/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,12 @@ def create_fleet(cmd,
rg_location = get_rg_location(cmd.cli_ctx, resource_group_name)
if location is None:
location = rg_location
logger.info('in create fleets5')
logger.error(location)

fleet = Fleet(
location=location,
tags=tags,
hub_profile=fleetHubProfile
)
logger.info('in create fleets6')

return sdk_no_wait(no_wait, client.begin_create_or_update, resource_group_name, name, fleet)

Expand Down