Prathamesh Musale
0c47da42fe
All checks were successful
Lint Checks / Run linter (push) Successful in 39s
Publish / Build and publish (push) Successful in 1m15s
Smoke Test / Run basic test suite (push) Successful in 4m16s
Webapp Test / Run webapp test suite (push) Successful in 4m47s
Deploy Test / Run deploy test suite (push) Successful in 5m2s
Fixturenet-Laconicd-Test / Run Laconicd fixturenet and Laconic CLI tests (push) Successful in 19m41s
K8s Deploy Test / Run deploy test suite on kind/k8s (push) Successful in 7m51s
Database Test / Run database hosting test on kind/k8s (push) Successful in 10m30s
Container Registry Test / Run contaier registry hosting test on kind/k8s (push) Successful in 3m54s
External Stack Test / Run external stack test suite (push) Successful in 4m52s
Part of [Service provider auctions for web deployments](https://www.notion.so/Service-provider-auctions-for-web-deployments-104a6b22d47280dbad51d28aa3a91d75) and #948 - Add a command `publish-deployment-auction` to create and publish an app deployment auction - Add a command `handle-deployment-auction` to handle auctions on deployer side - Update `request-webapp-deployment` command to allow using an auction id in deployment requests - Update `deploy-webapp-from-registry` command to handle deployment requests with auction - Add a command `request-webapp-undeployment` to request an application undeployment Reviewed-on: #950 Reviewed-by: ashwin <ashwin@noreply.git.vdb.to> Co-authored-by: Prathamesh Musale <prathamesh.musale0@gmail.com> Co-committed-by: Prathamesh Musale <prathamesh.musale0@gmail.com>
79 lines
4.0 KiB
Python
79 lines
4.0 KiB
Python
# Copyright © 2022, 2023 Vulcanize
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http:#www.gnu.org/licenses/>.
|
|
|
|
import click
|
|
|
|
from stack_orchestrator.command_types import CommandOptions
|
|
from stack_orchestrator.repos import setup_repositories
|
|
from stack_orchestrator.repos import fetch_stack
|
|
from stack_orchestrator.build import build_containers, fetch_containers
|
|
from stack_orchestrator.build import build_npms
|
|
from stack_orchestrator.build import build_webapp
|
|
from stack_orchestrator.deploy.webapp import (run_webapp,
|
|
deploy_webapp,
|
|
deploy_webapp_from_registry,
|
|
undeploy_webapp_from_registry,
|
|
publish_webapp_deployer,
|
|
publish_deployment_auction,
|
|
handle_deployment_auction,
|
|
request_webapp_deployment,
|
|
request_webapp_undeployment)
|
|
from stack_orchestrator.deploy import deploy
|
|
from stack_orchestrator import version
|
|
from stack_orchestrator.deploy import deployment
|
|
from stack_orchestrator import opts
|
|
from stack_orchestrator import update
|
|
|
|
CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])
|
|
|
|
|
|
@click.group(context_settings=CONTEXT_SETTINGS)
|
|
@click.option('--stack', help="specify a stack to build/deploy")
|
|
@click.option('--quiet', is_flag=True, default=False)
|
|
@click.option('--verbose', is_flag=True, default=False)
|
|
@click.option('--dry-run', is_flag=True, default=False)
|
|
@click.option('--local-stack', is_flag=True, default=False)
|
|
@click.option('--debug', is_flag=True, default=False)
|
|
@click.option('--continue-on-error', is_flag=True, default=False)
|
|
# See: https://click.palletsprojects.com/en/8.1.x/complex/#building-a-git-clone
|
|
@click.pass_context
|
|
def cli(ctx, stack, quiet, verbose, dry_run, local_stack, debug, continue_on_error):
|
|
"""Laconic Stack Orchestrator"""
|
|
command_options = CommandOptions(stack, quiet, verbose, dry_run, local_stack, debug, continue_on_error)
|
|
opts.opts.o = command_options
|
|
ctx.obj = command_options
|
|
|
|
|
|
cli.add_command(fetch_stack.command, "fetch-stack")
|
|
cli.add_command(setup_repositories.command, "setup-repositories")
|
|
cli.add_command(build_containers.command, "build-containers")
|
|
cli.add_command(fetch_containers.command, "fetch-containers")
|
|
cli.add_command(build_npms.command, "build-npms")
|
|
cli.add_command(build_webapp.command, "build-webapp")
|
|
cli.add_command(run_webapp.command, "run-webapp")
|
|
cli.add_command(deploy_webapp.command, "deploy-webapp")
|
|
cli.add_command(deploy_webapp_from_registry.command, "deploy-webapp-from-registry")
|
|
cli.add_command(undeploy_webapp_from_registry.command, "undeploy-webapp-from-registry")
|
|
cli.add_command(publish_webapp_deployer.command, "publish-deployer-to-registry")
|
|
cli.add_command(publish_deployment_auction.command, "publish-deployment-auction")
|
|
cli.add_command(handle_deployment_auction.command, "handle-deployment-auction")
|
|
cli.add_command(request_webapp_deployment.command, "request-webapp-deployment")
|
|
cli.add_command(request_webapp_undeployment.command, "request-webapp-undeployment")
|
|
cli.add_command(deploy.command, "deploy") # deploy is an alias for deploy-system
|
|
cli.add_command(deploy.command, "deploy-system")
|
|
cli.add_command(deployment.command, "deployment")
|
|
cli.add_command(version.command, "version")
|
|
cli.add_command(update.command, "update")
|