-
Notifications
You must be signed in to change notification settings - Fork 29
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
feat: add oci format chart support #57
base: master
Are you sure you want to change the base?
Conversation
1a65dd4
to
e568fd5
Compare
@mumoshu could I get your reivew? Thanks so much. |
chartify.go
Outdated
@@ -692,16 +693,36 @@ func (r *Runner) copyToTempDir(path, tempDir, chartVersion string) (string, erro | |||
} | |||
|
|||
func (r *Runner) fetchAndUntarUnderDir(chart, tempDir, chartVersion string) (string, error) { | |||
command := []string{"fetch", chart, "--untar", "-d", tempDir} | |||
ociEnv := map[string]string{ | |||
"HELM_EXPERIMENTAL_OCI": "1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To be clear, we don't need this anymore, since helm 3.8?
Will this be merged? I've encountered a weird issue with using Azure Container Registry as an OCI repo. Getting an error like ".../chartify999/.../foo/ is a directory". |
Signed-off-by: yxxhero <[email protected]>
Signed-off-by: yxxhero <[email protected]>
Signed-off-by: yxxhero <[email protected]>
Signed-off-by: yxxhero <[email protected]>
Signed-off-by: yxxhero <[email protected]>
Signed-off-by: yxxhero <[email protected]>
Signed-off-by: yxxhero <[email protected]>
4df399d
to
49f3047
Compare
Signed-off-by: yxxhero <[email protected]>
Signed-off-by: yxxhero <[email protected]>
@mumoshu please review. |
helmfile/helmfile#928