-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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 16 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
| 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 |
|---|---|---|
|
|
@@ -347,3 +347,63 @@ | |
| type: command | ||
| short-summary: Update an Azure Cache for Redis service binding of the app. | ||
| """ | ||
|
|
||
| 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 | ||
| """ | ||
|
|
||
| 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 -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 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 | ||
| """ | ||
|
|
||
| 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 -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 | ||
| """ | ||
|
|
||
| helps['spring-cloud app custom-domain delete'] = """ | ||
| type: command | ||
| short-summary: Delete a custom-domain of the app. | ||
| """ | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1 @@ | ||
| # -------------------------------------------------------------------------------------------- | ||
| # Copyright (c) Microsoft Corporation. All rights reserved. | ||
| # Licensed under the MIT License. See License.txt in the project root for license information. | ||
| # -------------------------------------------------------------------------------------------- | ||
|
|
||
| __path__ = __import__('pkgutil').extend_path(__path__, __name__) |
Uh oh!
There was an error while loading. Please reload this page.