File tree Expand file tree Collapse file tree 3 files changed +167
-137
lines changed
clab_connector/services/status Expand file tree Collapse file tree 3 files changed +167
-137
lines changed Original file line number Diff line number Diff line change @@ -563,7 +563,16 @@ def list_available_namespaces(self) -> list[str]:
563563 )
564564
565565 if data :
566- return extract_k8s_names (data , lambda name : name .startswith ("clab-" ))
566+ namespaces = extract_k8s_names (
567+ data , lambda name : name .startswith ("clab-" )
568+ )
569+ if endpoint :
570+ logger .info (
571+ "Found %d clab namespaces via endpoint %s" ,
572+ len (namespaces ),
573+ endpoint ,
574+ )
575+ return namespaces
567576
568577 return []
569578
Original file line number Diff line number Diff line change @@ -12,9 +12,9 @@ dependencies = [
1212 " bcrypt==5.0.0" ,
1313 " certifi==2025.10.5" ,
1414 " cffi==2.0.0" ,
15- " charset-normalizer==3.4.3 " ,
16- " cryptography==46.0.2 " ,
17- " idna==3.10 " ,
15+ " charset-normalizer==3.4.4 " ,
16+ " cryptography==46.0.3 " ,
17+ " idna==3.11 " ,
1818 " jinja2==3.1.6" ,
1919 " kubernetes==33.1.0" ,
2020 " markupsafe==3.0.3" ,
@@ -26,7 +26,7 @@ dependencies = [
2626 " typer==0.19.2" ,
2727 " urllib3==2.5.0" ,
2828 " click==8.3.0" ,
29- " rich>=14.1 .0" ,
29+ " rich>=14.2 .0" ,
3030]
3131
3232[project .scripts ]
@@ -138,5 +138,5 @@ dev = [
138138 " mypy>=1.18.2" ,
139139 " pytest>=8.4.2" ,
140140 " pytest-cov>=7.0.0" ,
141- " ruff>=0.12.4 " ,
141+ " ruff>=0.14.2 " ,
142142]
You can’t perform that action at this time.
0 commit comments