From fbfb44baf77b8b4d8e3a622cfba52d054123540d Mon Sep 17 00:00:00 2001 From: Max Maass Date: Thu, 21 Oct 2021 09:13:01 +0200 Subject: [PATCH 1/2] Use makefile instead of helm for scanner creation Signed-off-by: Max Maass --- docs/contributing/integrating-a-scanner.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/integrating-a-scanner.md b/docs/contributing/integrating-a-scanner.md index 6daac11e..f9827e28 100644 --- a/docs/contributing/integrating-a-scanner.md +++ b/docs/contributing/integrating-a-scanner.md @@ -51,7 +51,7 @@ scanners/nmap To create a new Helm Chart for your scanner you can use the following command (replace *new-scanner* with the name of the scanner): ```bash -helm create new-scanner +make create-new-scanner ``` This command will create a new directory named *new-scanner* and some template files provided by `helm` to simplify the creation of Helm Charts (see [Helm | Getting Started](https://helm.sh/docs/chart_template_guide/getting_started/)). From 0a2b63330d1099f0d3fdf083e7a090405754563d Mon Sep 17 00:00:00 2001 From: Max Maass Date: Thu, 21 Oct 2021 09:19:47 +0200 Subject: [PATCH 2/2] Correctly parameterize the Makefile Signed-off-by: Max Maass --- docs/contributing/integrating-a-scanner.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributing/integrating-a-scanner.md b/docs/contributing/integrating-a-scanner.md index f9827e28..5f58787e 100644 --- a/docs/contributing/integrating-a-scanner.md +++ b/docs/contributing/integrating-a-scanner.md @@ -51,7 +51,7 @@ scanners/nmap To create a new Helm Chart for your scanner you can use the following command (replace *new-scanner* with the name of the scanner): ```bash -make create-new-scanner +make create-new-scanner NAME=new-scanner ``` This command will create a new directory named *new-scanner* and some template files provided by `helm` to simplify the creation of Helm Charts (see [Helm | Getting Started](https://helm.sh/docs/chart_template_guide/getting_started/)).