summaryrefslogtreecommitdiffstats
path: root/samples/services/modsecurity/yaml/render_yaml.py
diff options
context:
space:
mode:
authorStephen Wong <stephen.kf.wong@gmail.com>2018-09-19 20:52:46 +0000
committerGerrit Code Review <gerrit@opnfv.org>2018-09-19 20:52:46 +0000
commite8eaf48f2a1230658e38eb8d609bdcd31b3661fd (patch)
tree7e2f35c48cfbcb5d082a3374fc6fc9880f0b375d /samples/services/modsecurity/yaml/render_yaml.py
parentedc329733d16a2df409ddfc34f1fae52e875ffd6 (diff)
parent0ade6b1a529828c72d68ae2c42d17a33dd61586e (diff)
Merge "Add ModSecurity config guide"
Diffstat (limited to 'samples/services/modsecurity/yaml/render_yaml.py')
-rw-r--r--samples/services/modsecurity/yaml/render_yaml.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/samples/services/modsecurity/yaml/render_yaml.py b/samples/services/modsecurity/yaml/render_yaml.py
index 54f8069..67622d6 100644
--- a/samples/services/modsecurity/yaml/render_yaml.py
+++ b/samples/services/modsecurity/yaml/render_yaml.py
@@ -22,6 +22,7 @@ def render_yaml(args):
image_name=args['image_name'],
image_tag=args['image_tag'],
deploy_name=args['deploy_name'],
+ deploy_namespace=args['deploy_namespace'],
http_port=args['http_port'],
paranoia_level=args['paranoia_level']
)
@@ -49,6 +50,9 @@ if __name__ == '__main__':
'--deploy_name', default='modsecurity-crs',
help='The k8s deploy name to use')
parser.add_argument(
+ '--deploy_namespace', default='clover-gateway',
+ help='The k8s namespace to deploy pod and service')
+ parser.add_argument(
'--http_port', default='80',
help='Analyze http traffic on this port')
parser.add_argument(