Skip to content

Commit f083d20

Browse files
committed
Extensibility GA
1 parent 145a045 commit f083d20

File tree

2 files changed

+3
-18
lines changed

2 files changed

+3
-18
lines changed

articles/azure-resource-manager/bicep/bicep-extension.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,13 @@ title: Use extensions in Bicep
33
description: This article describes how to use Bicep extensions.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep
6-
ms.date: 12/06/2024
6+
ms.date: 05/14/2025
77
---
88

99
# Use Bicep extensions
1010

1111
Bicep was initially created to enhance the authoring experience compared to Azure Resource Manager JSON templates, simplifying the deployment and management of Azure resources. Bicep extensions build on this foundation, enabling Bicep templates to reference resources beyond the scope of Azure Resource Manager. This article describes how to use Bicep extensions.
1212

13-
> [!NOTE]
14-
> The experimental feature `extensibility` must be enabled from the [Bicep config file](./bicep-config.md#enable-experimental-features) to use this feature.
15-
1613
The syntax for importing Bicep extensions is:
1714

1815
```bicep

articles/azure-resource-manager/bicep/bicep-kubernetes-extension.md

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ title: Bicep Kubernetes extension
33
description: Learn how to Bicep Kubernetes extension to deploy .NET applications to Azure Kubernetes Service clusters.
44
ms.topic: conceptual
55
ms.custom: devx-track-bicep, devx-track-dotnet
6-
ms.date: 04/28/2025
6+
ms.date: 05/14/2025
77
---
88

9-
# Bicep Kubernetes extension (Preview)
9+
# Bicep Kubernetes extension
1010

1111
The Kubernetes extension allows you to create Kubernetes resources directly with Bicep. Bicep can deploy anything that can be deployed with the [Kubernetes command-line client (kubectl)](https://kubernetes.io/docs/reference/kubectl/kubectl/) and a [Kubernetes manifest file](/azure/aks/concepts-clusters-workloads#deployments-and-yaml-manifests).
1212

@@ -25,18 +25,6 @@ The Kubernetes extension allows you to create Kubernetes resources directly with
2525
>
2626
> ```
2727
28-
## Enable the preview feature
29-
30-
This preview feature can be enabled by configuring the [bicepconfig.json](./bicep-config.md):
31-
32-
```json
33-
{
34-
"experimentalFeaturesEnabled": {
35-
"extensibility": true
36-
}
37-
}
38-
```
39-
4028
## Import Kubernetes extension
4129
4230
To safely pass secrets for the Kubernetes deployment, you must invoke the Kubernetes code with a Bicep module and pass the parameter as a secret.

0 commit comments

Comments
 (0)