Error message :
Error: Traceback (most recent call last):
File “/usr/lib/python3/dist-packages/middlewared/job.py”, line 469, in run
await self.future
File “/usr/lib/python3/dist-packages/middlewared/job.py”, line 511, in __run_body
rv = await self.method(*args)
^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/lib/python3/dist-packages/middlewared/service/crud_service.py”, line 210, in nf
rv = await func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/lib/python3/dist-packages/middlewared/schema/processor.py”, line 47, in nf
res = await f(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/lib/python3/dist-packages/middlewared/schema/processor.py”, line 187, in nf
return await func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File “/usr/lib/python3/dist-packages/middlewared/plugins/chart_releases_linux/chart_release.py”, line 414, in do_create
raise CallError(f’Chart release with {data[“release_name”]!r} name already exists.', errno=errno.EEXIST)
middlewared.service_exception.CallError: [EEXIST] Chart release with ‘transmission’ name already exists.
That looks like you’re trying to install an app named transmission
, and you already have an app by that name installed. If that’s the case, you’ll need to change the name on the one you’re installing.
Thanks! I just removed it… and that is when the error occured