This commit is contained in:
Thomas E Lackey 2024-02-02 14:50:53 -06:00
parent 58d6adf4cf
commit dcae063e11
2 changed files with 2 additions and 2 deletions

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")