kdebug 0.6.3__tar.gz → 0.6.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kdebug-0.6.3 → kdebug-0.6.4}/PKG-INFO +1 -1
- {kdebug-0.6.3 → kdebug-0.6.4}/pyproject.toml +1 -1
- {kdebug-0.6.3 → kdebug-0.6.4}/src/kdebug/cli.py +1 -1
- {kdebug-0.6.3 → kdebug-0.6.4}/.gitignore +0 -0
- {kdebug-0.6.3 → kdebug-0.6.4}/README.md +0 -0
- {kdebug-0.6.3 → kdebug-0.6.4}/src/kdebug/__init__.py +0 -0
- {kdebug-0.6.3 → kdebug-0.6.4}/src/kdebug/backup.py +0 -0
- {kdebug-0.6.3 → kdebug-0.6.4}/src/kdebug/completions/__init__.py +0 -0
- {kdebug-0.6.3 → kdebug-0.6.4}/src/kdebug/completions/_kdebug +0 -0
- {kdebug-0.6.3 → kdebug-0.6.4}/src/kdebug/completions/kdebug.bash +0 -0
- {kdebug-0.6.3 → kdebug-0.6.4}/src/kdebug/completions/kdebug.fish +0 -0
- {kdebug-0.6.3 → kdebug-0.6.4}/src/kdebug/debug.py +0 -0
|
@@ -178,7 +178,7 @@ def validate_cluster_connection(namespace: str) -> Optional[str]:
|
|
|
178
178
|
|
|
179
179
|
Returns None on success, or an error message string on failure.
|
|
180
180
|
"""
|
|
181
|
-
cmd = f"{kubectl_base_cmd()} get pods -n {namespace}
|
|
181
|
+
cmd = f"{kubectl_base_cmd()} get pods -n {namespace} -o name"
|
|
182
182
|
print_debug_command(cmd)
|
|
183
183
|
result = subprocess.run(cmd, shell=True, capture_output=True, text=True)
|
|
184
184
|
if result.returncode != 0:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|