Use correct option name in the kubernetes-worker registry action. Fixes #44920

This commit is contained in:
Jacek Nykis 2017-04-25 16:38:21 +01:00
parent 51fe7d2ba1
commit e02db69826

View File

@ -98,7 +98,7 @@ if create_response == 0:
if check_cm_response == 0:
# There is an existing ConfigMap, patch it
patch = '{"data":{"max-body-size":"1024m"}}'
patch = '{"data":{"body-size":"1024m"}}'
patch_cm_command = kubectl + ['patch', 'cm', cm_name, '-p', patch]
patch_cm_response = call(patch_cm_command)