Support OCI registry creds

Adds support to 3 environment variables:
- WAREWULF_OCI_USERNAME: registry user username
- WAREWULF_OCI_PASSWORD: registry user password
- WAREWULF_OCI_NOHTTPS: disable tls requirements (for local registries)

Note:
	This will default to ~/.docker/config.json for credentials and other docker
configurations on the system when no options are specified.
This commit is contained in:
Ian Kaneshiro
2021-02-16 17:50:27 -08:00
parent b6af0ccf70
commit db28555165
3 changed files with 65 additions and 5 deletions

View File

@@ -4,12 +4,13 @@ import (
"context"
"os"
"github.com/containers/image/v5/types"
"github.com/hpcng/warewulf/internal/pkg/config"
"github.com/hpcng/warewulf/internal/pkg/errors"
"github.com/hpcng/warewulf/internal/pkg/oci"
)
func PullURI(uri string, name string) error {
func PullURI(uri string, name string, sCtx *types.SystemContext) error {
OciBlobCacheDir := config.LocalStateDir + "/oci/blobs"
err := os.MkdirAll(OciBlobCacheDir, 0755)
@@ -30,13 +31,15 @@ func PullURI(uri string, name string) error {
p, err := oci.NewPuller(
oci.OptSetBlobCachePath(OciBlobCacheDir),
oci.OptSetSystemContext(nil),
oci.OptSetSystemContext(sCtx),
)
if err != nil {
return err
}
p.GenerateID(context.Background(), uri)
if _, err := p.GenerateID(context.Background(), uri); err != nil {
return err
}
if err := p.Pull(context.Background(), uri, fullPath); err != nil {
return err