-
Notifications
You must be signed in to change notification settings - Fork 1.5k
spring cloud - custom domain - cli #1419
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
Changes from all commits
bc5f217
118c192
f65b653
48ac1b5
09a2542
db92af7
783255c
02ffff2
c9acebb
9537bff
bdb656f
a0da1b1
b27c805
6b40aed
89dc614
ffeb6cf
efb83eb
5a5361f
a7debce
4a565b3
3a89cad
34789b4
a3816b3
142cd15
e21633a
02560d2
ceb5079
8538feb
71a60e4
eec4b40
a65b487
c6ccdc6
b312ed3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| 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. |
| 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.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -316,3 +316,73 @@ | |
| type: command | ||
| short-summary: Update an Azure Cache for Redis service binding of the app. | ||
| """ | ||
|
|
||
| helps['spring-cloud certificate'] = """ | ||
| type: group | ||
| short-summary: Commands to manage certificates. | ||
| """ | ||
|
|
||
| helps['spring-cloud certificate add'] = """ | ||
| type: command | ||
| short-summary: Add a certificate in Azure Spring Cloud. | ||
| examples: | ||
| - name: Import certificate from key vault. | ||
| text: az spring-cloud certificate add --name MyCertName --vault-uri MyKeyVaultUri --vault-certificate-name MyKeyVaultCertName --service MyCluster --resource-group MyResourceGroup | ||
| """ | ||
|
|
||
| helps['spring-cloud certificate show'] = """ | ||
| type: command | ||
| short-summary: Show a certificate in Azure Spring Cloud. | ||
| """ | ||
|
|
||
| helps['spring-cloud certificate list'] = """ | ||
| type: command | ||
| short-summary: List all certificates in Azure Spring Cloud. | ||
| examples: | ||
| - name: List all certificates in spring cloud service. | ||
| text: az spring-cloud certificate list --service MyCluster --resource-group MyResourceGroup -o table | ||
| """ | ||
|
|
||
| helps['spring-cloud certificate remove'] = """ | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think the verb should be consistent. I prefer "delele" There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We should use those verbs in pair right? add/remove, create/delete, bind/unbind
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. OK. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So I would suggest: |
||
| type: command | ||
| short-summary: Remove a certificate in Azure Spring Cloud. | ||
| """ | ||
|
|
||
| helps['spring-cloud app custom-domain'] = """ | ||
| type: group | ||
| short-summary: Commands to manage custom domains. | ||
| """ | ||
|
|
||
| helps['spring-cloud app custom-domain bind'] = """ | ||
| type: command | ||
| short-summary: Bind a custom domain with the app. | ||
| examples: | ||
| - name: Bind a custom domain to app. | ||
| text: az spring-cloud app custom-domain bind --domain-name MyDomainName --certificate MyCertName --app MyAppName --service MyCluster --resource-group MyResourceGroup | ||
| """ | ||
|
|
||
| helps['spring-cloud app custom-domain show'] = """ | ||
| type: command | ||
| short-summary: Show details of a custom domain. | ||
| """ | ||
|
|
||
| helps['spring-cloud app custom-domain list'] = """ | ||
| type: command | ||
| short-summary: List all custom domains of the app. | ||
| examples: | ||
| - name: List all custom domains of the app. | ||
| text: az spring-cloud app custom-domain list --app MyAppName --service MyCluster --resource-group MyResourceGroup -o table | ||
| """ | ||
|
|
||
| helps['spring-cloud app custom-domain update'] = """ | ||
| type: command | ||
| short-summary: Update a custom domain of the app. | ||
| examples: | ||
| - name: Bind custom domain with a specified certificate. | ||
| text: az spring-cloud app custom-domain update --domain-name MyDomainName --certificate MCertName --app MyAppName --service MyCluster --resource-group MyResourceGroup | ||
| """ | ||
|
|
||
| helps['spring-cloud app custom-domain unbind'] = """ | ||
| type: command | ||
| short-summary: Unbind a custom-domain of the app. | ||
| """ | ||
Uh oh!
There was an error while loading. Please reload this page.