mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
2.3 KiB
105 lines
2.3 KiB
/*
|
|
Copyright The Helm Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package pusher
|
|
|
|
import (
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
"strings"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
"helm.sh/helm/v3/pkg/chart/loader"
|
|
"helm.sh/helm/v3/pkg/registry"
|
|
)
|
|
|
|
// OCIPusher is the default OCI backend handler
|
|
type OCIPusher struct {
|
|
opts options
|
|
}
|
|
|
|
// Push performs a Push from repo.Pusher.
|
|
func (pusher *OCIPusher) Push(chartRef, href string, options ...Option) error {
|
|
for _, opt := range options {
|
|
opt(&pusher.opts)
|
|
}
|
|
return pusher.push(chartRef, href)
|
|
}
|
|
|
|
func (pusher *OCIPusher) push(chartRef, href string) error {
|
|
stat, err := os.Stat(chartRef)
|
|
if err != nil {
|
|
if os.IsNotExist(err) {
|
|
return errors.Errorf("%s: no such file", chartRef)
|
|
}
|
|
return err
|
|
}
|
|
if stat.IsDir() {
|
|
return errors.New("cannot push directory, must provide chart archive (.tgz)")
|
|
}
|
|
|
|
meta, err := loader.Load(chartRef)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
client := pusher.opts.registryClient
|
|
|
|
chartBytes, err := ioutil.ReadFile(chartRef)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
var pushOpts []registry.PushOption
|
|
provRef := fmt.Sprintf("%s.prov", chartRef)
|
|
if _, err := os.Stat(provRef); err == nil {
|
|
provBytes, err := ioutil.ReadFile(provRef)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pushOpts = append(pushOpts, registry.PushOptProvData(provBytes))
|
|
}
|
|
|
|
ref := fmt.Sprintf("%s:%s",
|
|
path.Join(strings.TrimPrefix(href, fmt.Sprintf("%s://", registry.OCIScheme)), meta.Metadata.Name),
|
|
meta.Metadata.Version)
|
|
|
|
_, err = client.Push(chartBytes, ref, pushOpts...)
|
|
return err
|
|
}
|
|
|
|
// NewOCIPusher constructs a valid OCI client as a Pusher
|
|
func NewOCIPusher(ops ...Option) (Pusher, error) {
|
|
registryClient, err := registry.NewClient()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
client := OCIPusher{
|
|
opts: options{
|
|
registryClient: registryClient,
|
|
},
|
|
}
|
|
|
|
for _, opt := range ops {
|
|
opt(&client.opts)
|
|
}
|
|
|
|
return &client, nil
|
|
}
|