Skip to content

Commit

Permalink
Updated help and version text.
Browse files Browse the repository at this point in the history
  • Loading branch information
Haroon Feisal committed Apr 22, 2022
1 parent c7e07db commit ba1d01e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/containerapp/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Release History

0.3.2
++++++
* Create or update a container app and all associated resources (container app environment, ACR, Github Actions, resource group, etc.) with 'az containerapp up'
* Added 'az containerapp up' to create or update a container app and all associated resources (container app environment, ACR, Github Actions, resource group, etc.)
* Open an ssh-like shell in a Container App with 'az containerapp exec'
* Support for log streaming with 'az containerapp logs show'
* Replica show and list commands
Expand Down
9 changes: 6 additions & 3 deletions src/containerapp/azext_containerapp/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,15 +114,18 @@
type: command
short-summary: Create or update a container app as well as any associated resources (ACR, resource group, container apps environment, Github Actions, etc.)
examples:
- name: Create a container app from a Github repo (setting up github actions)
- name: Create a container app from a dockerfile in a Github repo (setting up github actions)
text: |
az containerapp up -n MyContainerapp --repo https://github.com/myAccount/myRepo
- name: Create a container app from content in a local directory
- name: Create a container app from a dockerfile in a local directory
text: |
az containerapp up -n MyContainerapp --source .
- name: Create a container app from a container in a registry
- name: Create a container app from an image in a registry
text: |
az containerapp up -n MyContainerapp --image myregistry.azurecr.io/myImage:myTag
- name: Create a container app from an image in a registry with ingress enabled and a specified environment
text: |
az containerapp up -n MyContainerapp --image myregistry.azurecr.io/myImage:myTag --ingress external --target-port 80 --environment MyEnv
"""

helps['containerapp logs'] = """
Expand Down

0 comments on commit ba1d01e

Please sign in to comment.