Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update command outputs with release version #725

Merged
merged 18 commits into from
Sep 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions docs/content/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ Verify the rad CLI is installed correctly by running `rad version`.

Example output:
```
RELEASE VERSION BICEP COMMIT
0.15.0 v0.15.0 0.11.13 2e60bfb46de73ec5cc70485d53e67f8eaa914ba7
RELEASE VERSION BICEP COMMIT
{{< param chart_version >}} {{< param version >}} 0.11.13 2e60bfb46de73ec5cc70485d53e67f8eaa914ba7
```

## 3. Initialize Radius
Expand All @@ -75,12 +75,18 @@ rad init
Example output:

```
✔ k3d-k3s-default
Setup application in the current directory [Y/n]?:
Installing Radius version v0.15.0 control plane...
Creating environment default...
Successfully wrote configuration to /home/vscode/.rad/config.yaml
Created ".rad/rad.yaml"
Initializing Radius...

✅ Install Radius {{< param version >}}
- Kubernetes cluster: k3d-k3s-default
- Kubernetes namespace: radius-system
✅ Create new environment default
- Kubernetes namespace: default
- Recipe pack: local-dev
✅ Scaffold application docs
✅ Update local configuration

Initialization complete! Have a RAD time 😎
```

In addition to starting Radius services in your Kubernetes cluster, this initialization command creates a default application (`app.bicep`) as your starting point. It contains a single container definition (`demo`).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ Radius environments can be setup with the rad CLI via two paths: interactive or
```
Initializing Radius...

🕔 Install Radius 0.21
🕔 Install Radius {{< param version >}}
- Kubernetes cluster: kind
- Kubernetes namespace: radius-system
⏳ Create new environment default
- Kubernetes namespace: default
- Recipe pack: dev
- Recipe pack: local-dev
⏳ Scaffold application
⏳ Update local configuration
```
Expand Down Expand Up @@ -88,11 +88,12 @@ Radius environments can be setup with the rad CLI via two paths: interactive or
```
Initializing Radius...

✅ Install Radius v{{< param chart_version >}}
✅ Install Radius {{< param version >}}
- Kubernetes cluster: k3d-k3s-default
- Kubernetes namespace: radius-system
✅ Create new environment default
- Kubernetes namespace: default
- Kubernetes namespace: default
- Recipe pack: dev
✅ Scaffold application samples
✅ Update local configuration

Expand Down
Loading