Skip to content

Commit

Permalink
Fix wrong kubernetes label in incremental adoption docs (#1085)
Browse files Browse the repository at this point in the history
Signed-off-by: Will Smith <[email protected]>
  • Loading branch information
willdavsmith authored Mar 18, 2024
1 parent b9f7e7e commit f0a217e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/content/tutorials/tutorial-add-radius/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
...
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit f0a217e

Please sign in to comment.