2020-08-18 13:12:08 +00:00
|
|
|
# local
|
2020-08-19 14:10:56 +00:00
|
|
|
from ._subcommand import ServiceCommand
|
2020-08-18 13:12:08 +00:00
|
|
|
|
|
|
|
|
2020-08-19 14:10:56 +00:00
|
|
|
class PushCommand(ServiceCommand):
|
2020-08-18 13:12:08 +00:00
|
|
|
"""kiwi push"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__(
|
2020-08-19 14:10:56 +00:00
|
|
|
'push', num_projects='?', num_services='*',
|
|
|
|
action="Pushing images for",
|
2020-08-18 13:12:08 +00:00
|
|
|
description="Push images for the whole instance, a project or service(s) inside a project"
|
|
|
|
)
|
|
|
|
|
2020-08-19 14:10:56 +00:00
|
|
|
def _run_services(self, runner, args, project, services):
|
2020-08-19 15:09:43 +00:00
|
|
|
project.compose_run(['push', *services])
|
|
|
|
|
2020-08-18 13:12:08 +00:00
|
|
|
return True
|