Skip to content

Commit

Permalink
update add radius to existing app tutorial
Browse files Browse the repository at this point in the history
Signed-off-by: Will Tsai <[email protected]>
  • Loading branch information
willtsai committed Feb 22, 2024
1 parent 47e30c0 commit f797caa
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/content/tutorials/tutorial-add-radius/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Step 2: Deploy and test the existing Guestbook application using `kubectl`
Run this command to view the state of your application using Radius:

```bash
rad app connections -a demo
rad app graph -a demo -g default-demo
```

Since you have not yet added Radius to the application, the `rad` CLI will not recognize your `demo` application and you should see a message in the output similar to:
Expand Down Expand Up @@ -175,9 +175,9 @@ You will now add Radius to the Guestbook application's Kubernetes deployment man
apiVersion: apps/v1 # for k8s versions before 1.9.0 use apps/v1beta2 and before 1.8.0 use extensions/v1beta1
kind: Deployment
metadata:
name: frontend
annotations:
rad.app/enabled: 'true'
name: frontend
annotations:
rad.app/enabled: 'true'
spec:
selector:
matchLabels:
Expand All @@ -192,7 +192,7 @@ You will now add Radius to the Guestbook application's Kubernetes deployment man
spec:
containers:
- name: php-redis
image: gcr.io/google-samples/gb-frontend:v4
image: ghcr.io/radius-project/gb-frontend:v4
resources:
requests:
cpu: 100m
Expand Down Expand Up @@ -258,7 +258,7 @@ You will now add Radius to the Guestbook application's Kubernetes deployment man
Now that Radius has been enabled for your application, run this command again:

```bash
rad app connections -a demo
rad app graph -a demo -g default-demo
```

You should see output containing information and status of your newly "radified" application, similar to:
Expand Down

0 comments on commit f797caa

Please sign in to comment.