Skip to content

Commit

Permalink
Show tekton task in tree view (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
sudhirverma authored Jan 25, 2021
1 parent 4399ae7 commit 218bad7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tkn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ export class Command {
}
@verbose
static listTasks(namespace?: string): CliCommand {
return newK8sCommand('get', 'task', ...(namespace ? ['-n', namespace] : ''), '-o', 'json');
return newK8sCommand('get', 'task.tekton', ...(namespace ? ['-n', namespace] : ''), '-o', 'json');
}
@verbose
static listTasksInTerminal(namespace?: string): CliCommand {
Expand Down

0 comments on commit 218bad7

Please sign in to comment.