Skip to content

Commit

Permalink
refactor(deployment)!: removes ssh commands
Browse files Browse the repository at this point in the history
The deployment ssh and ssh-init were broken and are not used. We'll
implement this properly whenever there is an ask for it. In this commit,
we remove the implementation and clean all references.

BREAKING CHANGE: The `rio deployment ssh-init` and `rio deployment ssh`
commands are no longer available.
  • Loading branch information
pallabpain committed Jan 25, 2024
1 parent 38f0580 commit c066477
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 68 deletions.
3 changes: 0 additions & 3 deletions riocli/deployment/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
from riocli.deployment.inspect import inspect_deployment
from riocli.deployment.list import list_deployments
from riocli.deployment.logs import deployment_logs
from riocli.deployment.ssh import ssh_init, ssh_deployment
from riocli.deployment.status import status
from riocli.deployment.update import update_deployment
from riocli.deployment.wait import wait_for_deployment
Expand All @@ -46,7 +45,5 @@ def deployment():
deployment.add_command(deployment_logs)
deployment.add_command(wait_for_deployment)
deployment.add_command(status)
deployment.add_command(ssh_deployment)
deployment.add_command(ssh_init)
deployment.add_command(execute_command)
deployment.add_command(update_deployment)
65 changes: 0 additions & 65 deletions riocli/deployment/ssh.py

This file was deleted.

0 comments on commit c066477

Please sign in to comment.