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.
2 parents bfcaea2 + 1c26dfb commit f58be10Copy full SHA for f58be10
extended/src/main/java/io/kubernetes/client/extended/kubectl/KubectlLog.java
@@ -35,7 +35,7 @@ public InputStream execute() throws KubectlException {
35
PodLogs logs = new PodLogs(apiClient);
36
String ns = (this.namespace == null ? "default" : this.namespace);
37
try {
38
- return logs.streamNamespacedPodLog(this.name, ns, this.container);
+ return logs.streamNamespacedPodLog(ns, this.name, this.container);
39
} catch (ApiException | IOException ex) {
40
throw new KubectlException(ex);
41
}
0 commit comments