forked from flipt-io/flipt
-
Notifications
You must be signed in to change notification settings - Fork 0
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(oci): better integration OCI storage with AWS ECR #13
Closed
Closed
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,92 @@ | ||
package oci | ||
|
||
import ( | ||
"context" | ||
"encoding/base64" | ||
"strings" | ||
|
||
"github.com/aws/aws-sdk-go-v2/config" | ||
"github.com/aws/aws-sdk-go-v2/service/ecr" | ||
"go.flipt.io/flipt/internal/containers" | ||
"oras.land/oras-go/v2" | ||
"oras.land/oras-go/v2/registry/remote/auth" | ||
) | ||
|
||
// StoreOptions are used to configure call to NewStore | ||
// This shouldn't be handled directory, instead use one of the function options | ||
// e.g. WithBundleDir or WithCredentials | ||
type StoreOptions struct { | ||
bundleDir string | ||
manifestVersion oras.PackManifestVersion | ||
auth credentialFunc | ||
} | ||
|
||
// WithCredentials configures username and password credentials used for authenticating | ||
// with remote registries | ||
func WithCredentials(kind, user, pass string) containers.Option[StoreOptions] { | ||
switch kind { | ||
case "aws/ecr": | ||
return WithAWSECRCredentials() | ||
default: | ||
return WithStaticCredentials(user, pass) | ||
} | ||
} | ||
|
||
// WithStaticCredentials configures username and password credentials used for authenticating | ||
// with remote registries | ||
func WithStaticCredentials(user, pass string) containers.Option[StoreOptions] { | ||
return func(so *StoreOptions) { | ||
so.auth = func(registry string) auth.CredentialFunc { | ||
return auth.StaticCredential(registry, auth.Credential{ | ||
Username: user, | ||
Password: pass, | ||
}) | ||
} | ||
} | ||
} | ||
|
||
// WithAWSECRCredentials configures username and password credentials used for authenticating | ||
// with remote registries | ||
func WithAWSECRCredentials() containers.Option[StoreOptions] { | ||
return func(so *StoreOptions) { | ||
so.auth = func(registry string) auth.CredentialFunc { | ||
// AWS default private registry is {aws_account_id}.dkr.ecr.{region}.amazonaws.com | ||
return awsECRCredential | ||
} | ||
} | ||
} | ||
|
||
// WithManifestVersion configures what OCI Manifest version to build the bundle. | ||
func WithManifestVersion(version oras.PackManifestVersion) containers.Option[StoreOptions] { | ||
return func(s *StoreOptions) { | ||
s.manifestVersion = version | ||
} | ||
} | ||
|
||
func awsECRCredential(ctx context.Context, hostport string) (auth.Credential, error) { | ||
cfg, err := config.LoadDefaultConfig(ctx) | ||
if err != nil { | ||
return auth.EmptyCredential, err | ||
} | ||
var client *ecr.Client = ecr.NewFromConfig(cfg) | ||
response, err := client.GetAuthorizationToken(ctx, &ecr.GetAuthorizationTokenInput{}) | ||
if err != nil { | ||
return auth.EmptyCredential, err | ||
} | ||
token := response.AuthorizationData[0].AuthorizationToken | ||
output, err := base64.StdEncoding.DecodeString(*token) | ||
|
||
if err != nil { | ||
return auth.EmptyCredential, err | ||
} | ||
|
||
userpass := strings.SplitN(string(output), ":", 2) | ||
|
||
if len(userpass) != 2 { | ||
return auth.EmptyCredential, auth.ErrBasicCredentialNotFound | ||
} | ||
return auth.Credential{ | ||
Username: userpass[0], | ||
Password: userpass[1], | ||
}, nil | ||
} |
This file contains 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
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.
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.
Idk, maybe
aws-ecr
?