Fix bug
All checks were successful
Lint Checks / Run linter (pull_request) Successful in 33s
Smoke Test / Run basic test suite (pull_request) Successful in 4m29s
Webapp Test / Run webapp test suite (pull_request) Successful in 5m5s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m31s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 8m24s
All checks were successful
Lint Checks / Run linter (pull_request) Successful in 33s
Smoke Test / Run basic test suite (pull_request) Successful in 4m29s
Webapp Test / Run webapp test suite (pull_request) Successful in 5m5s
Deploy Test / Run deploy test suite (pull_request) Successful in 5m31s
K8s Deploy Test / Run deploy test suite on kind/k8s (pull_request) Successful in 8m24s
This commit is contained in:
parent
6c2ce4272a
commit
196a879c1a
@ -98,7 +98,7 @@ def down(ctx, delete_volumes, skip_cluster_management, extra_args):
|
|||||||
# Get the stack config file name
|
# Get the stack config file name
|
||||||
# TODO: add cluster name and env file here
|
# TODO: add cluster name and env file here
|
||||||
ctx.obj = make_deploy_context(ctx)
|
ctx.obj = make_deploy_context(ctx)
|
||||||
down_operation(ctx, delete_volumes, skip_cluster_management, extra_args)
|
down_operation(ctx, delete_volumes, extra_args, skip_cluster_management)
|
||||||
|
|
||||||
|
|
||||||
# stop is the preferred alias for down
|
# stop is the preferred alias for down
|
||||||
@ -111,7 +111,7 @@ def down(ctx, delete_volumes, skip_cluster_management, extra_args):
|
|||||||
def stop(ctx, delete_volumes, skip_cluster_management, extra_args):
|
def stop(ctx, delete_volumes, skip_cluster_management, extra_args):
|
||||||
# TODO: add cluster name and env file here
|
# TODO: add cluster name and env file here
|
||||||
ctx.obj = make_deploy_context(ctx)
|
ctx.obj = make_deploy_context(ctx)
|
||||||
down_operation(ctx, delete_volumes, skip_cluster_management, extra_args)
|
down_operation(ctx, delete_volumes, extra_args, skip_cluster_management)
|
||||||
|
|
||||||
|
|
||||||
@command.command()
|
@command.command()
|
||||||
|
Loading…
Reference in New Issue
Block a user