Skip to content

Commit 6cf9812

Browse files
update install script kubectl command to find kuberay-operator pod globally (#460)
Signed-off-by: googs1025 <googs1025@gmail.com> Co-authored-by: Yuhan Liu <32589867+YuhanLiu11@users.noreply.github.com>
1 parent aee842c commit 6cf9812

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

tutorials/00-b-install-kuberay-operator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,10 @@ Before you begin, ensure the following:
6060
### Step 2: Verify the KubeRay Configuration
6161

6262
1. **Check the Operator Pod Status:**
63-
- Ensure that the KubeRay operator pod is running in the default namespace:
63+
- Ensure that the KubeRay operator pod is running:
6464

6565
```bash
66-
kubectl get pods
66+
kubectl get pods -A | grep kuberay-operator
6767
```
6868

6969
2. **Expected Output:**

utils/install-kuberay.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ helm search repo kuberay --devel
1212
# Install both CRDs and KubeRay operator v1.2.0.
1313
helm install kuberay-operator kuberay/kuberay-operator --version 1.2.0
1414

15-
# Check the KubeRay operator Pod in `default` namespace
16-
kubectl get pods
15+
# Check the KubeRay operator Pod
16+
kubectl get pods -A | grep kuberay-operator
1717
# NAME READY STATUS RESTARTS AGE
1818
# kuberay-operator-f89ddb644-psts7 1/1 Running 0 33m

0 commit comments

Comments
 (0)