You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Or can manually set it with as the namespace is DNS-1123 compliant
162
+
export NAMESPACE=<unique_namespace>
163
+
156
164
```
157
165
158
166
#### Verify Deployment
@@ -261,8 +269,8 @@ The following tools are available to help debug and interact with HyperFleet com
261
269
**Important:** Set the `NAMESPACE` environment variable to match the namespace used during deployment. Some test cases deploy adapters dynamically and need to target the same namespace where your HyperFleet components are running.
262
270
263
271
```bash
264
-
# Set NAMESPACE if you deployed to a custom namespace
265
-
export NAMESPACE=my-custom-namespace
272
+
# Set NAMESPACE if you deployed to a unique namespace
273
+
export NAMESPACE=<unique_namespace>
266
274
./bin/hyperfleet-e2e test --label-filter=tier0
267
275
```
268
276
@@ -281,7 +289,7 @@ Unexpected error:
281
289
282
290
1.**Check if all pods are running:**
283
291
```bash
284
-
kubectl get pods -n hyperfleet-e2e
292
+
kubectl get pods -n ${NAMESPACE}
285
293
```
286
294
287
295
Expected output - all pods should show `Running` with `READY 1/1`:
0 commit comments