Issue while doing go mod tidy

Hi,

I have done go get helm.sh/helm/v3 which is successfully done but after that when I am doing go mod tidy I got

go: downloading GitHub - klauspost/compress: Optimized Go Compression Packages v1.13.6
go: finding module for package github.com/chai2010/gettext-go/gettext
helm.sh/helm/v3/pkg/kube imports
k8s.io/kubectl/pkg/cmd/util imports
k8s.io/kubectl/pkg/util/i18n imports
github.com/chai2010/gettext-go/gettext: module github.com/chai2010/gettext-go@latest found (v1.0.2), but does not contain package github.com/chai2010/gettext-go/gettext

I have tried with go clean -modcache as well but didnt work for me

How to fix this issue, any pointers will be helpful

Iā€™m not good at this package dependency chain stuff, but I think maybe that helm.sh/helm/v3/pkg/kube needs to update its reference to k8s.io/kubectl from v0.26.0 to v0.27.0 or later which looks to be the release where kubectl updated to v1.0.2 of github.com/chai2010/gettext-go where the package was changed from github.com/chai2010/gettext-go/gettext to just github.com/chai2010/gettext-go.

Maybe open an issue with helm?

1 Like

Thanks @skillian ,On Your suggestion I have opened an issue with the Helm :slight_smile:

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.