Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion oks_cli/cluster.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def cluster_logout(ctx, profile):
@cluster.command('list', help="List all clusters")
@click.option('--project-name', '-p', required=False, help="Project Name", shell_complete=project_completer)
@click.option('--cluster-name', '--name', '-c', required=False, help="Cluster Name", shell_complete=cluster_completer)
@click.option('--deleted', '-x', is_flag=True, help="List deleted clusters") # x pour "deleted" / "removed"
@click.option('--deleted', '-x', is_flag=True, deprecated="List deleted clusters - Will be removed") # x pour "deleted" / "removed"
@click.option('--plain', is_flag=True, help="Plain table format")
@click.option('--msword', is_flag=True, help="Microsoft Word table format")
@click.option('--watch', '-w', is_flag=True, help="Watch the changes")
Expand Down
2 changes: 1 addition & 1 deletion oks_cli/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def project_logout(ctx, profile):
# LIST PROJECTS
@project.command('list', help="List all projects")
@click.option('--project-name', '-p', help="Name of project", type=click.STRING, shell_complete=project_completer)
@click.option('--deleted', '-x', is_flag=True, help="List deleted projects")
@click.option('--deleted', '-x', is_flag=True, deprecated="List deleted projects - Will be removed")
@click.option('--plain', is_flag=True, help="Plain table format")
@click.option('--msword', is_flag=True, help="Microsoft Word table format")
@click.option('--uuid', is_flag=True, help="Show UUID")
Expand Down