From 81d5d8600a5f009336fe8dd4f8ff4e4ce417f881 Mon Sep 17 00:00:00 2001 From: Will Tsai <28876888+willtsai@users.noreply.github.com> Date: Wed, 1 Nov 2023 08:13:34 -0700 Subject: [PATCH] update line num highlighting in snippet Signed-off-by: Will Tsai <28876888+willtsai@users.noreply.github.com> --- .../guides/author-apps/kubernetes/how-to-patch-pod/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guides/author-apps/kubernetes/how-to-patch-pod/index.md b/docs/content/guides/author-apps/kubernetes/how-to-patch-pod/index.md index 302b4d1a4..81c18e5df 100644 --- a/docs/content/guides/author-apps/kubernetes/how-to-patch-pod/index.md +++ b/docs/content/guides/author-apps/kubernetes/how-to-patch-pod/index.md @@ -74,7 +74,7 @@ Begin by creating a file named `app.bicep` with a Radius [container]({{< ref "gu Add the following [`runtimes`]({{< ref "reference/resource-schema/core-schema/container-schema#runtimes" >}}) configuration to the container definition in your `app.bicep` file. This allows you to punch through the Radius abstraction and directly apply any part of the Kubernetes PodSpec. In this example you're adding an additional sidecar container: -{{< rad file="snippets/patch-runtime.bicep" embed=true markdownConfig="{linenos=table,hl_lines=[\"18-30\"]}" >}} +{{< rad file="snippets/patch-runtime.bicep" embed=true markdownConfig="{linenos=table,hl_lines=[\"21-37\"]}" >}} > Remember to save your `app.bicep` file after you've made the above changes.