You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 10, 2024. It is now read-only.
Frigate doesn't seem to work if a chart requirement is not specified directly, and instead uses a range:
We have this in our Chart.yaml:
- name: common
version: ^1
repository: oci://registry.xxx.com/charts
Helm update runs fine:
Saving 1 charts
Downloading common from repo oci://registry.xxx.com/charts
Pulled: registry.xxx.com/charts/common:1.7.4
Frigate fails with:
shutil.unpack_archive(dependency_path, tmpdirname)
File "/usr/lib/python3.10/shutil.py", line 1271, in unpack_archive
func(filename, extract_dir, **kwargs)
File "/usr/lib/python3.10/shutil.py", line 1199, in _unpack_tarfile
tarobj = tarfile.open(filename)
File "/usr/lib/python3.10/tarfile.py", line 1622, in open
return func(name, "r", fileobj, **kwargs)
File "/usr/lib/python3.10/tarfile.py", line 1688, in gzopen
fileobj = GzipFile(name, mode + "b", compresslevel, fileobj)
File "/usr/lib/python3.10/gzip.py", line 174, in __init__
fileobj = self.myfileobj = builtins.open(filename, mode or 'rb')
FileNotFoundError: [Errno 2] No such file or directory: './charts/common-^1.tgz'