az mesh deployment
Note
This reference is part of the mesh extension for the Azure CLI (version 2.50.0 or higher). The extension will automatically install the first time you run an az mesh deployment command. Learn more about extensions.
Command group 'az mesh' is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus
Manage Service Fabric Mesh deployments.
Commands
Name | Description | Type | Status |
---|---|---|---|
az mesh deployment create |
Create a Service Fabric Mesh application. |
Extension | Preview |
az mesh deployment create
Command group 'az mesh' is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus
Create a Service Fabric Mesh application.
az mesh deployment create --resource-group
[--input-yaml-files]
[--mode]
[--name]
[--no-wait]
[--parameters]
[--template-file]
[--template-uri]
Examples
Create a deployment with a template file on the remote.
az mesh deployment create --resource-group mygroup --template-uri https://seabreezequickstart.blob.core.windows.net/templates/quickstart/sbz_rp.linux.json
Create a deployment with a template file on local disk.
az mesh deployment create --resource-group mygroup --template-file ./appTemplate.json
List of comma separated yaml files or a directory which contains all the yaml files.
az mesh deployment create --resource-group mygroup --input-yaml-files ./app.yaml,./network.yaml
Create a deployment with yaml files, along with a yaml parameters file, which consists of key/value pairs.
az mesh deployment create --resource-group mygroup --input-yaml-files ./app.yaml,./network.yaml --parameters ../params.yaml
Create a deployment with parameters in arm json format.
az mesh deployment create --resource-group mygroup --input-yaml-files ./app.yaml,./network.yaml --parameters "params.json"
Create a deployment with parameters passed directly as a json object.
az mesh deployment create --resource-group mygroup --input-yaml-files ./app.yaml,./network.yaml --parameters "{ 'location' : {'value' : 'eastus'}, 'myparam' : {'value' : 'myvalue'} }"
Required Parameters
Name of resource group. You can configure the default group using az configure --defaults group=<name>
.
Optional Parameters
List of comma-separated yaml files or a directory which contains all the yaml files.
The mode for deployment, can be incremental(resources are only added) or complete(previous resources will be deleted).
The deployment name. Default to template file base name.
Do not wait for the long-running operation to finish.
Parameters in yaml file as key-value pairs or as json object or as json arm parameter file to supplement parameters of the deployment template.
The full file path of creation template.
The full file path of creation template on a http or https link.
Global Parameters
Increase logging verbosity to show all debug logs.
Show this help message and exit.
Only show errors, suppressing warnings.
Output format.
JMESPath query string. See http://jmespath.org/ for more information and examples.
Name or ID of subscription. You can configure the default subscription using az account set -s NAME_OR_ID
.
Increase logging verbosity. Use --debug for full debug logs.