Skip to content

Commit 7f11daf

Browse files
remove default value
Signed-off-by: Marvin Frommhold <depressiveRobot@users.noreply.github.com>
1 parent a402692 commit 7f11daf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Tests/kaas/sonobuoy_handler/run_sonobuoy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def cli():
2020
@click.option("-k", "--kubeconfig", "kubeconfig", required=True, type=click.Path(exists=True), help="path/to/kubeconfig_file.yaml",)
2121
@click.option("-r", "--result_dir_name", "result_dir_name", type=str, default="sonobuoy_results", help="directory name to store results at",)
2222
@click.option("-c", "--check", "check_name", type=str, default="sonobuoy_executor", help="this MUST be the same name as the id in 'scs-compatible-kaas.yaml'",)
23-
@click.option("--scs-sonobuoy-config", "scs_sonobuoy_config_yaml", type=click.Path(exists=True), default="kaas/scs-sonobuoy-config-v1.yaml", help="Configuration for Sonobuoy (yaml format)")
23+
@click.option("--scs-sonobuoy-config", "scs_sonobuoy_config_yaml", required=True, type=click.Path(exists=True), help="Configuration for Sonobuoy (YAML format)")
2424
@click.option('--execution-mode', 'mode', type=click.Choice(('serial', 'parallel')), default='serial')
2525
@click.option("-a", "--arg", "args", multiple=True)
2626
def sonobuoy_run(kubeconfig, result_dir_name, check_name, scs_sonobuoy_config_yaml, mode, args):

Tests/kaas/sonobuoy_handler/sonobuoy_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ class SonobuoyHandler:
3939

4040
def __init__(
4141
self,
42+
scs_sonobuoy_config_yaml,
4243
check_name="sonobuoy_handler",
4344
kubeconfig=None,
4445
result_dir_name="sonobuoy_results",
45-
scs_sonobuoy_config_yaml="kaas/scs-sonobuoy-config-v1.yaml",
4646
args=(),
4747
):
4848
self.check_name = check_name

0 commit comments

Comments
 (0)