-
Notifications
You must be signed in to change notification settings - Fork 217
[helm-oci] disable cache in oci registry client #799
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,6 +4,11 @@ go 1.17 | |
|
|
||
| replace github.com/fluxcd/source-controller/api => ./api | ||
|
|
||
| // this is needed to fix an issue in the helm sdk, where all credentials are cached | ||
| // indefinitely when using the oci client. https://github.com/helm/helm/pull/11086 | ||
| // TODO: remove this once helm.sh/helm/[email protected] is released. | ||
| replace helm.sh/helm/v3 => helm.sh/helm/v3 v3.9.0-rc.1.0.20220627184942-c52cd40acef1 | ||
souleb marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| require ( | ||
| cloud.google.com/go/storage v1.22.1 | ||
| github.com/Azure/azure-sdk-for-go/sdk/azcore v0.22.0 | ||
|
|
@@ -72,11 +77,11 @@ require ( | |
| github.com/Azure/azure-sdk-for-go/sdk/internal v0.9.1 // indirect | ||
| github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
| github.com/AzureAD/microsoft-authentication-library-for-go v0.4.0 // indirect | ||
| github.com/BurntSushi/toml v1.0.0 // indirect | ||
| github.com/BurntSushi/toml v1.1.0 // indirect | ||
| github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect | ||
| github.com/Masterminds/goutils v1.1.1 // indirect | ||
| github.com/Masterminds/sprig/v3 v3.2.2 // indirect | ||
| github.com/Masterminds/squirrel v1.5.2 // indirect | ||
| github.com/Masterminds/squirrel v1.5.3 // indirect | ||
| github.com/Microsoft/go-winio v0.5.2 // indirect | ||
| github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
| github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
|
|
@@ -89,10 +94,10 @@ require ( | |
| github.com/bugsnag/panicwrap v1.3.4 // indirect | ||
| github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
| github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect | ||
| github.com/containerd/containerd v1.6.3 // indirect | ||
| github.com/containerd/containerd v1.6.4 // indirect | ||
| github.com/davecgh/go-spew v1.1.1 // indirect | ||
| github.com/docker/distribution v2.8.1+incompatible // indirect | ||
| github.com/docker/docker v20.10.14+incompatible // indirect | ||
| github.com/docker/docker v20.10.16+incompatible // indirect | ||
| github.com/docker/docker-credential-helpers v0.6.4 // indirect | ||
| github.com/docker/go-connections v0.4.0 // indirect | ||
| github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c // indirect | ||
|
|
@@ -138,7 +143,7 @@ require ( | |
| github.com/imdario/mergo v0.3.12 // indirect | ||
| github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
| github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect | ||
| github.com/jmoiron/sqlx v1.3.4 // indirect | ||
| github.com/jmoiron/sqlx v1.3.5 // indirect | ||
| github.com/josharian/intern v1.0.0 // indirect | ||
| github.com/json-iterator/go v1.1.12 // indirect | ||
| github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect | ||
|
|
@@ -148,7 +153,7 @@ require ( | |
| github.com/kylelemons/godebug v1.1.0 // indirect | ||
| github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect | ||
| github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect | ||
| github.com/lib/pq v1.10.4 // indirect | ||
| github.com/lib/pq v1.10.6 // indirect | ||
| github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect | ||
| github.com/mailru/easyjson v0.7.6 // indirect | ||
| github.com/mattn/go-colorable v0.1.12 // indirect | ||
|
|
@@ -179,14 +184,14 @@ require ( | |
| github.com/prometheus/common v0.32.1 // indirect | ||
| github.com/prometheus/procfs v0.7.3 // indirect | ||
| github.com/rs/xid v1.2.1 // indirect | ||
| github.com/rubenv/sql-migrate v1.1.1 // indirect | ||
| github.com/rubenv/sql-migrate v1.1.2 // indirect | ||
| github.com/russross/blackfriday v1.5.2 // indirect | ||
| github.com/sergi/go-diff v1.2.0 // indirect | ||
| github.com/shopspring/decimal v1.2.0 // indirect | ||
| github.com/sirupsen/logrus v1.8.1 // indirect | ||
| github.com/spf13/cast v1.4.1 // indirect | ||
| github.com/spf13/cobra v1.4.0 // indirect | ||
| github.com/stretchr/testify v1.7.1 // indirect | ||
| github.com/spf13/cobra v1.5.0 // indirect | ||
| github.com/stretchr/testify v1.7.4 // indirect | ||
| github.com/xanzy/ssh-agent v0.3.1 // indirect | ||
| github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
| github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
|
|
@@ -215,14 +220,14 @@ require ( | |
| gopkg.in/ini.v1 v1.66.2 // indirect | ||
| gopkg.in/warnings.v0 v0.1.2 // indirect | ||
| gopkg.in/yaml.v2 v2.4.0 // indirect | ||
| gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
| k8s.io/apiextensions-apiserver v0.24.0 // indirect | ||
| k8s.io/apiserver v0.24.0 // indirect | ||
| k8s.io/cli-runtime v0.24.0 // indirect | ||
| gopkg.in/yaml.v3 v3.0.1 // indirect | ||
| k8s.io/apiextensions-apiserver v0.24.1 // indirect | ||
| k8s.io/apiserver v0.24.1 // indirect | ||
| k8s.io/cli-runtime v0.24.1 // indirect | ||
| k8s.io/component-base v0.24.1 // indirect | ||
| k8s.io/klog/v2 v2.60.1 // indirect | ||
| k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect | ||
| k8s.io/kubectl v0.24.0 // indirect | ||
| k8s.io/kubectl v0.24.1 // indirect | ||
| oras.land/oras-go v1.1.1 // indirect | ||
| sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect | ||
| sigs.k8s.io/kustomize/api v0.11.4 // indirect | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.