We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2769b1f commit d4e97b6Copy full SHA for d4e97b6
keras_remote/backend/pathways_client.py
@@ -105,10 +105,10 @@ def submit_pathways_job(
105
except ApiException as e:
106
if e.status == 404:
107
raise RuntimeError(
108
- "LeaderWorkerSet CRD not found. Please assure it is "
109
- "installed on the cluster. Run: kubectl apply "
110
- "--server-side -f https://github.com/kubernetes-sigs"
111
- "/lws/releases/download/v0.3.2/lws.yaml"
+ "LeaderWorkerSet CRD not found. Please ensure it is "
+ "installed on the cluster. You can install it by running "
+ "the `keras-remote infra up` command, or by following the "
+ "official LWS installation guide."
112
) from e
113
else:
114
0 commit comments