Skip to content

Commit 7cc4eae

Browse files
authored
Merge pull request #99346 from dlepow/acifresh3
[ACI] TLS and emptydir
2 parents c3e74de + 94c632e commit 7cc4eae

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

articles/container-instances/container-instances-overview.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,20 @@ Azure Container Instances is a great solution for any scenario that can operate
1616

1717
Containers offer significant startup benefits over virtual machines (VMs). Azure Container Instances can start containers in Azure in seconds, without the need to provision and manage VMs.
1818

19-
## Public IP connectivity and DNS name
19+
## Container access
2020

21-
Azure Container Instances enables exposing your containers directly to the internet with an IP address and a fully qualified domain name (FQDN). When you create a container instance, you can specify a custom DNS name label so your application is reachable at *customlabel*.*azureregion*.azurecontainer.io.
21+
Azure Container Instances enables exposing your container groups directly to the internet with an IP address and a fully qualified domain name (FQDN). When you create a container instance, you can specify a custom DNS name label so your application is reachable at *customlabel*.*azureregion*.azurecontainer.io.
22+
23+
Azure Container Instances also supports executing a command in a running container by providing an interactive shell to help with application development and troubleshooting. Access takes places over HTTPS, using TLS to secure client connections.
24+
25+
> [!IMPORTANT]
26+
> Starting January 13, 2020, Azure Container Instances will require all secure connections from servers and applications to use TLS 1.2. Support for TLS 1.0 and 1.1 will be retired.
2227
2328
## Hypervisor-level security
2429

2530
Historically, containers have offered application dependency isolation and resource governance but have not been considered sufficiently hardened for hostile multi-tenant usage. Azure Container Instances guarantees your application is as isolated in a container as it would be in a VM.
2631

32+
2733
## Custom sizes
2834

2935
Containers are typically optimized to run just a single application, but the exact needs of those applications can differ greatly. Azure Container Instances provides optimum utilization by allowing exact specifications of CPU cores and memory. You pay based on what you need and get billed by the second, so you can fine-tune your spending based on actual need.
@@ -32,7 +38,7 @@ For compute-intensive jobs such as machine learning, Azure Container Instances c
3238

3339
## Persistent storage
3440

35-
To retrieve and persist state with Azure Container Instances, we offer direct [mounting of Azure Files shares](container-instances-mounting-azure-files-volume.md).
41+
To retrieve and persist state with Azure Container Instances, we offer direct [mounting of Azure Files shares](container-instances-mounting-azure-files-volume.md) backed by Azure Storage.
3642

3743
## Linux and Windows containers
3844

articles/container-instances/container-instances-volume-emptydir.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.date: 02/08/2018
77

88
# Mount an emptyDir volume in Azure Container Instances
99

10-
Learn how to mount an *emptyDir* volume to share data between the containers in a container group in Azure Container Instances.
10+
Learn how to mount an *emptyDir* volume to share data between the containers in a container group in Azure Container Instances. Use *emptyDir* volumes as ephemeral caches for your containerized workloads.
1111

1212
> [!NOTE]
1313
> Mounting an *emptyDir* volume is currently restricted to Linux containers. While we are working to bring all features to Windows containers, you can find current platform differences in the [overview](container-instances-overview.md#linux-and-windows-containers).
@@ -22,7 +22,7 @@ Some example uses for an *emptyDir* volume:
2222
* Checkpointing during long-running tasks
2323
* Store data retrieved by a sidecar container and served by an application container
2424

25-
Data in an *emptyDir* volume is persisted through container crashes. Containers that are restarted, however, are not guaranteed to persist the data in an *emptyDir* volume.
25+
Data in an *emptyDir* volume is persisted through container crashes. Containers that are restarted, however, are not guaranteed to persist the data in an *emptyDir* volume. If you stop a container group, the *emptyDir* volume is not persisted.
2626

2727
## Mount an emptyDir volume
2828

0 commit comments

Comments
 (0)