From f0a217e645964b6d4a629a43aad78d98f0c464cd Mon Sep 17 00:00:00 2001 From: Will Smith Date: Mon, 18 Mar 2024 07:09:05 -0700 Subject: [PATCH] Fix wrong kubernetes label in incremental adoption docs (#1085) Signed-off-by: Will Smith --- docs/content/tutorials/tutorial-add-radius/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorials/tutorial-add-radius/index.md b/docs/content/tutorials/tutorial-add-radius/index.md index 3e822762c..6f5a3bd12 100644 --- a/docs/content/tutorials/tutorial-add-radius/index.md +++ b/docs/content/tutorials/tutorial-add-radius/index.md @@ -151,7 +151,7 @@ Step 2: Deploy and test the existing Guestbook application using `kubectl` You will now add Radius to the Guestbook application's Kubernetes deployment manifests by making edits to the YAML files in the `deploy` directory. -1. In each of the YAML files that contain a manifest for `Kind: Deployment`, add the `annotations` property to `metadata`, and then add the `rad.app/enabled: 'true'` annotation. Note that the `'true'` must be surrounded in quotes. +1. In each of the YAML files that contain a manifest for `Kind: Deployment`, add the `annotations` property to `metadata`, and then add the `radapp.io/enabled: 'true'` annotation. Note that the `'true'` must be surrounded in quotes. ```yaml ... @@ -179,7 +179,7 @@ You will now add Radius to the Guestbook application's Kubernetes deployment man metadata: name: frontend annotations: - rad.app/enabled: 'true' + radapp.io/enabled: 'true' spec: selector: matchLabels: