Azure Container Apps · Example Payload

Azure Container Apps Container Example

AzureContainersDaprKubernetesMicroservicesServerless

Azure Container Apps Container Example is an example object payload from Azure Container Apps, with 8 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

imagenamecommandargsenvresourcesvolumeMountsprobes

Example Payload

Raw ↑
{
  "image": "mcr.microsoft.com/azuredocs/containerapps-helloworld:latest",
  "name": "my-container-app",
  "command": [
    "example-string"
  ],
  "args": [
    "example-string"
  ],
  "env": [
    {
      "name": "my-container-app",
      "value": {},
      "secretRef": {}
    }
  ],
  "resources": {
    "cpu": 0.5,
    "memory": "1Gi",
    "ephemeralStorage": "example-string"
  },
  "volumeMounts": [
    {
      "volumeName": {},
      "mountPath": {},
      "subPath": {}
    }
  ],
  "probes": [
    {
      "failureThreshold": {},
      "httpGet": {},
      "initialDelaySeconds": {},
      "periodSeconds": {},
      "successThreshold": {},
      "tcpSocket": {},
      "terminationGracePeriodSeconds": {},
      "timeoutSeconds": {},
      "type": "Microsoft.App/containerApps"
    }
  ]
}