We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 434c971 commit 101ade2Copy full SHA for 101ade2
src/codeflare_sdk/cluster/cluster.py
@@ -97,7 +97,7 @@ def job_client(self):
97
self._job_submission_client = JobSubmissionClient(
98
self.cluster_dashboard_uri(),
99
headers=self._client_headers,
100
- verify=False,
+ verify=self._client_verify_tls,
101
)
102
else:
103
@@ -354,7 +354,7 @@ def is_dashboard_ready(self) -> bool:
354
355
356
timeout=5,
357
358
359
except requests.exceptions.SSLError: # pragma no cover
360
# SSL exception occurs when oauth ingress has been created but cluster is not up
0 commit comments