Skip to content

Commit 5e720d0

Browse files
authored
Merge pull request #287155 from hangwan97/Preview_label
Preview label
2 parents 1ee6fe8 + 15521db commit 5e720d0

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

articles/container-apps/TOC.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
href: deploy-visual-studio.md
3030
- name: Visual Studio Code
3131
href: deploy-visual-studio-code.md
32-
- name: Deploy from artifact
32+
- name: Deploy from artifact (preview)
3333
items:
3434
- name: Command line
3535
href: deploy-artifact.md
@@ -349,10 +349,10 @@
349349
- name: Get started using IntelliJ
350350
href: /azure/developer/java/toolkit-for-intellij/create-container-apps-intellij?toc=/azure/container-apps/toc.json&bc=/azure/container-apps/breadcrumb/toc.json
351351
displayName: java
352-
- name: Automatic memory fitting
352+
- name: Automatic memory fitting (preview)
353353
href: java-memory-fit.md
354354
displayName: java
355-
- name: Build environment variables
355+
- name: Build environment variables (preview)
356356
href: java-build-environment-variables.md
357357
displayName: java
358358
- name: Metrics

articles/container-apps/deploy-artifact.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 02/27/2024
1010
ms.custom: ignite-2023
1111
---
1212

13-
# Quickstart: Deploy an artifact file to Azure Container Apps
13+
# Quickstart: Deploy an artifact file to Azure Container Apps (preview)
1414

1515
In this quickstart, you learn to deploy a container app from a prebuilt artifact file. The example in this article deploys a Java application using a JAR file, which includes a Java-specific manifest file. Your job is to create a backend web API service that returns a static collection of music albums. After completing this quickstart, you can continue to [Communication between microservices](communicate-between-microservices.md) to learn how to deploy a front end application that calls the API.
1616

articles/container-apps/java-build-environment-variables.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 02/27/2024
1010
ms.author: cshoe
1111
---
1212

13-
# Build environment variables for Java in Azure Container Apps
13+
# Build environment variables for Java in Azure Container Apps (preview)
1414

1515
Azure Container Apps uses [Buildpacks](https://buildpacks.io/) to automatically create a container image that allows you to deploy from your source code directly to the cloud. To take control of your build configuration, you can use environment variables to customize parts of your build like the JDK, Maven, and Tomcat. The following article shows you how to configure environment variables to help you take control over builds that automatically create a container for you.
1616

articles/container-apps/java-memory-fit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.date: 02/27/2024
1010
ms.author: cshoe
1111
---
1212

13-
# Use memory efficiently for Java apps in Azure Container Apps
13+
# Use memory efficiently for Java apps in Azure Container Apps (preview)
1414

1515
The Java Virtual Machine (JVM) uses memory conservatively as it assumes OS memory must be shared among multiple applications. However, your container app can optimize memory usage and make the maximum amount of memory possible available to your application. This memory optimization is known as Java automatic memory fitting. When memory fitting is enabled, Java application performance is typically improved between 10% and 20% without any code changes.
1616

articles/container-apps/java-overview.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@ When you use Container Apps for your containerized Java applications, you get:
1919
- **Cost effective scaling**: When you use the [Consumption plan](plans.md#consumption), your Java apps can scale to zero. Scaling in when there's little demand for your app automatically drives costs down for your projects.
2020

2121
- **Deployment options**: Azure Container Apps integrates with [Buildpacks](https://buildpacks.io), which allows you to deploy directly from a Maven build, via artifact files, or with your own Dockerfile.
22-
- **JAR deployment**: You can deploy your container app directly from a [JAR file](java-get-started.md?tabs=jar).
22+
- **JAR deployment (Preview)**: You can deploy your container app directly from a [JAR file](java-get-started.md?tabs=jar).
2323

24-
- **WAR deployment**: You can deploy your container app directly from a [WAR file](java-get-started.md?tabs=war).
24+
- **WAR deployment (Preview)**: You can deploy your container app directly from a [WAR file](java-get-started.md?tabs=war).
2525

2626
- **IDE support**: You can deploy your container app directly from [IntelliJ](/azure/developer/java/toolkit-for-intellij/create-container-apps-intellij#deploy-the-container-app).
2727

28-
- **Automatic memory fitting**: Container Apps optimizes how the Java Virtual Machine (JVM) [manages memory](java-memory-fit.md), making the most possible memory available to your Java applications.
28+
- **Automatic memory fitting (Preview)**: Container Apps optimizes how the Java Virtual Machine (JVM) [manages memory](java-memory-fit.md), making the most possible memory available to your Java applications.
2929

30-
- **Build environment variables**: You can configure [custom key-value pairs](java-build-environment-variables.md) to control the Java image build from source code.
30+
- **Build environment variables (Preview)**: You can configure [custom key-value pairs](java-build-environment-variables.md) to control the Java image build from source code.
3131

3232
This article details the information you need to know as you build Java applications on Azure Container Apps.
3333

0 commit comments

Comments
 (0)