lint
All checks were successful
Lint Checks / Run linter (pull_request) Successful in 37s
Deploy Test / Run deploy test suite (pull_request) Successful in 4m44s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 9m7s
Webapp Test / Run webapp test suite (pull_request) Successful in 4m19s
Smoke Test / Run basic test suite (pull_request) Successful in 4m42s

This commit is contained in:
Thomas E Lackey 2024-02-27 13:40:57 -06:00
parent 64c5579912
commit 6919ae5fec

View File

@ -120,7 +120,7 @@ def process_app_deployment_request(
# simply add our unique tag to the existing image and we are done
logger.log(f"Using existing app image {app_image_shared_tag} for {deployment_container_tag}")
add_tags_to_image(image_registry, app_image_shared_tag, deployment_container_tag)
logger.log(f"Tag complete")
logger.log("Tag complete")
else:
extra_build_args = [] # TODO: pull from request
logger.log(f"Building container image {deployment_container_tag}")
@ -132,7 +132,7 @@ def process_app_deployment_request(
# The build/push commands above will use the unique deployment tag, so now we need to add the shared tag.
logger.log(f"Updating app image tag {app_image_shared_tag} from build of {deployment_container_tag}")
add_tags_to_image(image_registry, deployment_container_tag, app_image_shared_tag)
logger.log(f"Tag complete")
logger.log("Tag complete")
# 7. update config (if needed)
if not deployment_record or file_hash(deployment_config_file) != deployment_record.attributes.meta.config: