Skip to content

Commit 25aabc6

Browse files
Update Java Containerization Strategies doc (#2954)
* Update index.yml * Update and rename aks.md to kubernetes.md * Update kubernetes.md * Update baseline.md * Update toc.yml * Update toc.yml * edit * updated hub page Co-authored-by: Karl Erickson <karler@microsoft.com>
1 parent a3982af commit 25aabc6

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

articles/java/containers/baseline.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ For information on setting up Application Insights, see [Azure Monitor OpenTelem
2626

2727
Now that you've configured Azure Application Insights for your application, the next step is to review the recommendations for the target platform.
2828

29-
* [Containerize your Java applications for Azure Kubernetes Service](aks.md)
29+
* [Containerize your Java applications for Kubernetes](kubernetes.md)

articles/java/containers/index.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
### YamlMime:Landing
22

33
title: Java containerization strategies
4-
summary: Recommended strategies for containerizing your Java applications for deployment to Azure.
4+
summary: Recommended strategies for containerizing your Java applications for deployment to the cloud.
55

66
metadata:
7-
title: Java on Azure containerization documentation
8-
description: Recommended strategies for containerizing your Java applications for deployment to Azure.
7+
title: Java containerization strategies
8+
description: Recommended strategies for containerizing your Java applications for deployment to the cloud.
99
ms.author: brborges
1010
ms.date: 04/13/2022
1111
ms.topic: landing-page
@@ -19,5 +19,5 @@ landingContent:
1919
url: overview.md
2020
- text: Establish a baseline
2121
url: baseline.md
22-
- text: Containerize for Azure Kubernetes Service
23-
url: aks.md
22+
- text: Containerize for Kubernetes
23+
url: kubernetes.md

articles/java/containers/aks.md renamed to articles/java/containers/kubernetes.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
title: Containerize your Java applications for Azure Kubernetes Service
3-
description: This article describes how to containerize your Java applications on Azure Kubernetes Service
2+
title: Containerize your Java applications for Kubernetes
3+
description: This article describes how to containerize your Java applications for Kubernetes deployment
44
ms.author: brborges
55
ms.topic: conceptual
66
ms.date: 04/13/2022
77
ms.custom: devx-track-java
88
recommendations: false
99
---
1010

11-
# Containerize your Java applications for Azure Kubernetes Service
11+
# Containerize your Java applications for Kubernetes
1212

13-
This article describes how to containerize your Java applications on Azure Kubernetes Services.
13+
This article describes how to containerize your Java applications for deployment on Kubernetes.
1414

1515
For guidance on container memory, JVM heap memory, garbage collectors (GCs), and vCPU cores, see [Containerize your Java applications](overview.md).
1616

17-
## Determine the appropriate VM SKU for the AKS node pool
17+
## Determine the appropriate VM SKU for the Kubernetes node pool
1818

19-
Determine whether the Azure Kubernetes Service node pool or pools that are available for your cluster can fit the container memory and vCPU cores that you intend to use. If the AKS node pool can host the application, then continue on. Otherwise, provision a node pool that's appropriate for the amount of container memory and number of vCPU cores you're targeting.
19+
Determine whether the Kubernetes node pool or pools that are available for your cluster can fit the container memory and vCPU cores that you intend to use. If the node pool can host the application, then continue on. Otherwise, provision a node pool that's appropriate for the amount of container memory and number of vCPU cores you're targeting.
2020

2121
Keep in mind that the cost of a VM SKU is proportional to the number of cores and amount of memory. After you determine your starting point in terms of vCPUs and memory for one container instance, determine whether you can meet your application's needs by horizontal scaling only. For reliable, always-on systems, a minimum of two replicas must be available. Scale up and out as needed.
2222

@@ -83,4 +83,4 @@ containers:
8383

8484
## Next steps
8585

86-
* [Java on Azure containerization documentation](index.yml)
86+
* [Java containerization strategies](index.yml)

articles/java/containers/toc.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
- name: Java on Azure containerization documentation
1+
- name: Java containerization strategies
22
href: index.yml
33
items:
44
- name: Overview
55
href: overview.md
66
- name: Establish a baseline
77
href: baseline.md
8-
- name: Containerize for Azure Kubernetes Service
9-
href: aks.md
8+
- name: Containerize for Kubernetes
9+
href: kubernetes.md

articles/java/index.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ conceptualContent:
141141
- text: Establish a baseline
142142
itemType: concept
143143
url: containers/baseline.md
144-
- text: Containerize for AKS
144+
- text: Containerize for Kubernetes
145145
itemType: concept
146-
url: containers/aks.md
146+
url: containers/kubernetes.md
147147
footerLink:
148148
text: See more
149149
url: containers/index.yml

0 commit comments

Comments
 (0)