addressing feedback

This commit is contained in:
hridyesh bisht 2025-07-15 13:20:27 +05:30
parent 0ea655eea4
commit 3bf7d9c822
No known key found for this signature in database
GPG Key ID: 7E30EC522B3FCFBB
1 changed files with 11 additions and 5 deletions

View File

@ -1,5 +1,11 @@
# **Install Fleet CLI**
# Fleet CLI
Fleet CLI is a command-line interface(CLI) that allows you to interact directly with Fleet from your local machine. It provides a practical way to:
* Apply Kubernetes manifests locally without needing a Git repository
* Experiment or test workloads in a development environment
## Install Fleet CLI
Fleet can be installed and used entirely through the command line. This document walks you through:
* Installing the Fleet CLI.
@ -34,7 +40,7 @@ fleet \--version
## **Prerequisites**
Before you begin:
Make sure you have the following tools installed and configured:
* A working Kubernetes cluster (e.g., via k3s, kind, or a cloud provider).
* `kubectl` is configured for your cluster.
@ -58,12 +64,12 @@ Fleet needs to be installed in the Kubernetes cluster using Helm. By default, th
Create the `cattle-fleet-system` namespace and install the Fleet CRDs and controller using Helm:
```bash
\# Add Fleet Helm repo
# Add Fleet Helm repo
helm repo add rancher-latest https://releases.rancher.com/server-charts/latest
helm repo update
Note: You can use any namespace you want.
\# Create namespace
# Note: You can use any namespace you want.
# Create namespace
kubectl create namespace cattle-fleet-system
```