File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class Config(object):
4646 ),
4747 ),
4848)
49- app .autodiscover_tasks ()
49+ app .autodiscover_tasks (( "helmbroker.tasks" ,) )
5050
5151
5252app .config_from_object (Config ())
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ def provision(instance_id: str, details: ProvisionDetails):
4646 "--set" ,
4747 f"fullnameOverride=helmbroker-{ details .context ['instance_name' ]} "
4848 ]
49- logger .info (f"helm install parameters :{ details .parameters } " )
49+ logger .debug (f"helm install parameters :{ details .parameters } " )
5050 if details .parameters and "rawValues" in details .parameters \
5151 and details .parameters .get ("rawValues" , "" ):
5252 values = str (base64 .b64decode (details .parameters ["rawValues" ]), "utf-8" ) # noqa
@@ -56,7 +56,7 @@ def provision(instance_id: str, details: ProvisionDetails):
5656 if details .parameters :
5757 for k , v in details .parameters .items ():
5858 args .extend (["--set" , f"{ k } ={ v } " ])
59- logger .info (f"helm install args:{ args } " )
59+ logger .debug (f"helm install args:{ args } " )
6060 status , output = helm (instance_id , * args )
6161 data = load_instance_meta (instance_id )
6262 if status != 0 :
You can’t perform that action at this time.
0 commit comments