mirror of https://github.com/fluxcd/flux2.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
Go
46 lines
1.4 KiB
Go
/*
|
|
Copyright 2025 The Flux 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 main
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/google/go-containerregistry/pkg/crane"
|
|
|
|
"github.com/fluxcd/pkg/auth"
|
|
"github.com/fluxcd/pkg/auth/azure"
|
|
authutils "github.com/fluxcd/pkg/auth/utils"
|
|
)
|
|
|
|
// loginWithProvider gets a crane authentication option for the given provider and URL.
|
|
func loginWithProvider(ctx context.Context, url, provider string) (crane.Option, error) {
|
|
var opts []auth.Option
|
|
if provider == azure.ProviderName {
|
|
opts = append(opts, auth.WithAllowShellOut())
|
|
}
|
|
authenticator, err := authutils.GetArtifactRegistryCredentials(ctx, provider, url, opts...)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not login to provider %s with url %s: %w", provider, url, err)
|
|
}
|
|
if authenticator == nil {
|
|
return nil, errors.New("unsupported provider")
|
|
}
|
|
return crane.WithAuth(authenticator), nil
|
|
}
|