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
However, this doesn't work if packages are not strict prefixes of each other - e.g. foo-bar vs foo-fips-bar. Normally packages would represent this kind of "foo with bar variant" with a provides section of the apk, but the provider only considers the apko config itself during resolution.
Ideally, the following apk pkginfo should be able to satisfy foo:
name = bar
provides = foo
The text was updated successfully, but these errors were encountered:
Currently, data_apko_tags uses a prefix-match to determine matching packages. This works for matching things like
foo
vsfoo-fips
.terraform-provider-apko/internal/provider/tags_data_source.go
Line 123 in 5d34bb6
However, this doesn't work if packages are not strict prefixes of each other - e.g.
foo-bar
vsfoo-fips-bar
. Normally packages would represent this kind of "foo with bar variant" with aprovides
section of the apk, but the provider only considers the apko config itself during resolution.Ideally, the following apk pkginfo should be able to satisfy
foo
:The text was updated successfully, but these errors were encountered: