Skip to content

Commit 524cb88

Browse files
Merge pull request #2275 from MicrosoftDocs/main
Auto Publish – main to live - 2026-03-18 22:11 UTC
2 parents 8646146 + 3def78d commit 524cb88

File tree

5 files changed

+17
-18
lines changed

5 files changed

+17
-18
lines changed

articles/azure-arc/kubernetes/extensions-release.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: "Available extensions for Azure Arc-enabled Kubernetes clusters"
3-
ms.date: 02/18/2026
3+
ms.date: 03/18/2026
44
ms.topic: how-to
55
description: "See a list of extensions that are currently available for Azure Arc-enabled Kubernetes clusters. View Flux extension release notes."
66
ms.custom:
@@ -204,17 +204,17 @@ The most recent version of the Flux v2 extension and the two previous versions (
204204
205205
### Deprecation and removal notice: Upcoming changes to `microsoft.flux` extension
206206

207-
Several upstream Flux APIs that have been retired by the Flux project will be removed in an upcoming release of the `microsoft.flux` extension. These changes align with the Flux community's efforts to streamline and modernize the API surface.
207+
Several upstream Flux APIs that have been retired by the Flux project will be removed in upcoming releases of the `microsoft.flux` extension. These changes align with the Flux community's efforts to streamline and modernize the API surface.
208208

209209
The following Flux APIs are being deprecated and will be removed:
210210

211-
- Deprecated APIs in group `source.toolkit.fluxcd.io/v1beta1`
212-
- Deprecated APIs in group `kustomize.toolkit.fluxcd.io/v1beta1`
213-
- Deprecated APIs in group `helm.toolkit.fluxcd.io/v2beta1`
211+
- Deprecated APIs in group `source.toolkit.fluxcd.io/v1beta1` and `source.toolkit.fluxcd.io/v1beta2`
212+
- Deprecated APIs in group `kustomize.toolkit.fluxcd.io/v1beta1` and `kustomize.toolkit.fluxcd.io/v1beta2`
213+
- Deprecated APIs in group `helm.toolkit.fluxcd.io/v2beta1` abd `helm.toolkit.fluxcd.io/v2beta2`
214214
- Deprecated APIs in group `notification.toolkit.fluxcd.io/v1beta1`
215215
- Deprecated APIs in group `image.toolkit.fluxcd.io/v1beta1`
216216

217-
For a complete list of deprecated APIs and their replacements, see the PRs linked in <https://github.com/fluxcd/flux2/issues/5474>.
217+
For more information, see <https://github.com/fluxcd/flux2/issues/5572>.
218218

219219
**Required action:** To ensure continued compatibility and avoid disruptions, update your sources to remove references to deprecated APIs. Use the supported API versions for all impacted resources. We strongly recommend completing these steps before January 2026 to avoid deployment failures or resource reconciliation issues.
220220

articles/azure-arc/servers/prerequisites.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,11 @@ x86-64 (64-bit) architecture is fully supported, while [only some features may b
5252
| Azure Local | | | | |
5353
| Debian | 11 ||| Expected [limited support](#limited-support-operating-systems) date: 07/03/2026 |
5454
| Debian | 12 ||| |
55+
| Debian | 13 ||| |
5556
| Oracle Linux | 7 ||| |
56-
| Oracle Linux | 8 || | |
57+
| Oracle Linux | 8 || | |
5758
| Oracle Linux | 9 ||| |
59+
| Oracle Linux | 10 ||| |
5860
| Red Hat Enterprise Linux (RHEL) | 7 ||| |
5961
| Red Hat Enterprise Linux (RHEL) | 8 ||| |
6062
| Red Hat Enterprise Linux (RHEL) | 9 ||| |

articles/container-registry/container-registry-tutorial-base-image-update.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ az acr task create \
8888
--name baseexample1 \
8989
--image helloworld:{{.Run.ID}} \
9090
--arg REGISTRY_NAME=$ACR_NAME.azurecr.io \
91-
--context https://github.com/$GIT_USER/acr-build-helloworld-node.git#master \
91+
--context https://github.com/$GIT_USER/acr-build-helloworld-node.git#main \
9292
--file Dockerfile-app \
9393
--git-access-token $GIT_PAT
9494
```
@@ -233,8 +233,8 @@ Now, move on to the next tutorial to learn how to trigger tasks on a defined sch
233233
<!-- LINKS - External -->
234234
[base-node]: https://hub.docker.com/_/node/
235235
[code-sample]: https://github.com/Azure-Samples/acr-build-helloworld-node
236-
[dockerfile-app]: https://github.com/Azure-Samples/acr-build-helloworld-node/blob/master/Dockerfile-app
237-
[dockerfile-base]: https://github.com/Azure-Samples/acr-build-helloworld-node/blob/master/Dockerfile-base
236+
[dockerfile-app]: https://github.com/Azure-Samples/acr-build-helloworld-node/blob/main/Dockerfile-app
237+
[dockerfile-base]: https://github.com/Azure-Samples/acr-build-helloworld-node/blob/main/Dockerfile-base
238238

239239
<!-- LINKS - Internal -->
240240
[az-acr-build]: /cli/azure/acr#az-acr-build

articles/container-registry/container-registry-tutorial-private-base-image-update.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,8 @@ az acr task list-runs --registry $ACR_NAME --output table
184184

185185
If you completed the previous tutorial (and didn't delete the registry), you should see output similar to the following. Take note of the number of task runs, and the latest RUN ID, so you can compare the output after you update the base image in the next section.
186186

187-
```azurecli
188-
az acr task list-runs --registry $ACR_NAME --output table
189-
```
190-
191187
```output
192-
UN ID TASK PLATFORM STATUS TRIGGER STARTED DURATION
188+
RUN ID TASK PLATFORM STATUS TRIGGER STARTED DURATION
193189
-------- -------------- ---------- --------- ------------ -------------------- ----------
194190
ca12 baseexample2 linux Succeeded Manual 2023-11-21T00:00:56Z 00:00:36
195191
ca11 baseexample1 linux Succeeded Image Update 2023-11-20T23:38:24Z 00:00:34
@@ -273,8 +269,8 @@ In this tutorial, you learned how to use a task to automatically trigger contain
273269
<!-- LINKS - External -->
274270
[base-node]: https://hub.docker.com/_/node/
275271
[code-sample]: https://github.com/Azure-Samples/acr-build-helloworld-node
276-
[dockerfile-app]: https://github.com/Azure-Samples/acr-build-helloworld-node/blob/master/Dockerfile-app
277-
[dockerfile-base]: https://github.com/Azure-Samples/acr-build-helloworld-node/blob/master/Dockerfile-base
272+
[dockerfile-app]: https://github.com/Azure-Samples/acr-build-helloworld-node/blob/main/Dockerfile-app
273+
[dockerfile-base]: https://github.com/Azure-Samples/acr-build-helloworld-node/blob/main/Dockerfile-base
278274

279275
<!-- LINKS - Internal -->
280276
[az-acr-build]: /cli/azure/acr#az-acr-build

docfx.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,8 @@
244244
"ms.subservice": {
245245
"articles/azure-arc/kubernetes/**/*.md": "azure-arc-kubernetes",
246246
"articles/azure-arc/servers/**/*.md": "azure-arc-servers",
247-
"articles/azure-arc/container-storage/**/*.md": "azure-arc-container-storage"
247+
"articles/azure-arc/container-storage/**/*.md": "azure-arc-container-storage",
248+
"articles/azure-arc/workload-orchestration/**/*.md": "workload-orchestration"
248249
},
249250
"searchScope": {
250251
"articles/azure-arc/**/*.md": [

0 commit comments

Comments
 (0)