-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
spring cloud - custom domain - cli (#1419)
- Loading branch information
1 parent
3d46998
commit cf586cc
Showing
22 changed files
with
2,454 additions
and
47 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
56 changes: 29 additions & 27 deletions
56
src/spring-cloud/HISTORY.rst → src/spring-cloud/HISTORY.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
.. :changelog: | ||
Release History | ||
=============== | ||
|
||
0.2.2 | ||
++++++ | ||
* Remove the limitation of max compatible cli core version | ||
|
||
0.2.1 | ||
++++++ | ||
* Add command "az spring-cloud app logs" to replace "az spring-cloud app log tail" for log streaming. | ||
* "az spring-cloud app log tail" will be deprecated in a future release | ||
* Fix Python 3 and Python 2 compatible issues. | ||
|
||
0.2.0 | ||
++++++ | ||
* Support the log streaming feature. | ||
* Add command for log streaming: az spring-cloud app log tail. | ||
|
||
0.1.1 | ||
++++++ | ||
* Improve the verbosity for the long running commands. | ||
* Refine the descriptions and error messages for the command. | ||
|
||
0.1.0 | ||
++++++ | ||
Release History | ||
=============== | ||
|
||
0.2.3 | ||
----- | ||
* Add command "az spring-cloud app custom-domain" and "az spring-cloud certificate" to support Custom Domain feature. | ||
|
||
0.2.2 | ||
----- | ||
* Remove the limitation of max compatible cli core version | ||
|
||
0.2.1 | ||
----- | ||
* Add command "az spring-cloud app logs" to replace "az spring-cloud app log tail" for log streaming. | ||
* "az spring-cloud app log tail" will be deprecated in a future release | ||
* Fix Python 3 and Python 2 compatible issues. | ||
|
||
0.2.0 | ||
----- | ||
* Support the log streaming feature. | ||
* Add command for log streaming: az spring-cloud app log tail. | ||
|
||
0.1.1 | ||
----- | ||
* Improve the verbosity for the long running commands. | ||
* Refine the descriptions and error messages for the command. | ||
|
||
0.1.0 | ||
----- | ||
* Initial release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Microsoft Azure CLI 'spring-cloud' Extension | ||
========================================== | ||
|
||
This package is for the 'spring-cloud' extension. | ||
i.e. 'az spring-cloud' | ||
|
||
### How to use ### | ||
Install this extension using the below CLI command | ||
``` | ||
az extension add --name spring-cloud | ||
``` | ||
|
||
### Sample Commands ### | ||
Create a service and not wait | ||
``` | ||
az spring-cloud create -n <service name> --no-wait | ||
``` | ||
Create a green deployment with default configuration | ||
``` | ||
az spring-cloud app deployment create --app <app name> -n <deployment name> --jar-path <jar path> | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.