Skip to content

Commit

Permalink
Add acto namespace args to reproduce module
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkintoshZ committed Oct 28, 2023
1 parent 878a010 commit 342ee41
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion acto/reproduce.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,11 @@ def reproduce_postdiff(workdir_path: str, operator_config: OperatorConfig, acto_
dest='cluster_runtime',
default="KIND",
help='Cluster runtime for kubernetes, can be KIND (Default), K3D or MINIKUBE')
parser.add_argument(
'--acto-namespace',
dest='acto_namespace',
default=0,
help='Kubernetes namespace for acto')
parser.add_argument('--context', dest='context', help='Cached context data')
args = parser.parse_args()

Expand All @@ -215,5 +220,6 @@ def reproduce_postdiff(workdir_path: str, operator_config: OperatorConfig, acto_
reproduce(workdir_path=workdir_path,
reproduce_dir=args.reproduce_dir,
operator_config=args.config,
acto_namespace=args.acto_namespace,
cluster_runtime=args.cluster_runtime)
end_time = datetime.now()
end_time = datetime.now()

0 comments on commit 342ee41

Please sign in to comment.