Skip to content

Commit b2439ca

Browse files
committed
k8s extension is still in review
1 parent f083d20 commit b2439ca

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

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

Lines changed: 14 additions & 2 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: 05/14/2025
6+
ms.date: 04/28/2025
77
---
88

9-
# Bicep Kubernetes extension
9+
# Bicep Kubernetes extension (Preview)
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,6 +25,18 @@ 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+
2840
## Import Kubernetes extension
2941

3042
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)