lib: save task's call arguments for manual retry

This commit is contained in:
Jens Langhammer
2020-10-16 12:55:10 +02:00
parent fa504e4bf9
commit 7806cff96f
5 changed files with 53 additions and 9 deletions

View File

@ -53,7 +53,7 @@ class KubernetesManifestView(LoginRequiredMixin, View):
)
manifest = ""
if outpost.type == OutpostType.PROXY:
controller = ProxyKubernetesController(outpost_pk)
controller = ProxyKubernetesController(outpost)
manifest = controller.get_static_deployment()
return HttpResponse(manifest, content_type="text/vnd.yaml")