Support other webapp types (react, static). #721

Merged
telackey merged 8 commits from telackey/webapp-detect into main 2024-02-03 00:04:06 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit dcae063e11 - Show all commits

View File

@ -23,8 +23,7 @@ import tempfile
import click
from stack_orchestrator.deploy.webapp import deploy_webapp
from stack_orchestrator.deploy.webapp.util import (LaconicRegistryClient, determine_base_container,
build_container_image, push_container_image,
from stack_orchestrator.deploy.webapp.util import (LaconicRegistryClient, build_container_image, push_container_image,
file_hash, deploy_to_k8s, publish_deployment,
hostname_for_deployment_request, generate_hostname_for_app,
match_owner)

View File

@ -29,6 +29,7 @@ from stack_orchestrator.deploy.deployer_factory import getDeployer
WEBAPP_PORT = 80
@click.command()
@click.option("--image", help="image to deploy", required=True)
@click.option("--env-file", help="environment file for webapp")