Skip to content

Commit

Permalink
fix(clouddriver): Unsuccessful default namespace resolution in Kubern…
Browse files Browse the repository at this point in the history
…etes v2 provider
  • Loading branch information
neelimamanubolu authored and ezimanyi committed May 28, 2019
1 parent cf8a64b commit 6295722
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public String defaultNamespace(KubernetesV2Credentials credentials) {
command.add("view");
command.add("-o");
String jsonPath = "{.contexts[?(@.name==\"" + configCurrentContext + "\")].context.namespace}";
command.add("\"jsonPath=" + jsonPath + "\"");
command.add("\"jsonpath=" + jsonPath + "\"");

JobResult<String> status = jobExecutor.runJob(new JobRequest(command));

Expand Down

0 comments on commit 6295722

Please sign in to comment.