Skip to content
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

Use packages-related clients and methods conditionally #8667

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions release/cli/cmd/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ var releaseCmd = &cobra.Command{
ReleaseDate: releaseDate,
ReleaseTime: releaseTime,
DevRelease: devRelease,
BundleRelease: bundleRelease,
DryRun: dryRun,
Weekly: weekly,
ReleaseEnvironment: releaseEnvironment,
Expand Down
3 changes: 2 additions & 1 deletion release/cli/pkg/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import (
"github.com/aws/eks-anywhere/release/cli/pkg/constants"
releasetypes "github.com/aws/eks-anywhere/release/cli/pkg/types"
commandutils "github.com/aws/eks-anywhere/release/cli/pkg/util/command"
packagesutils "github.com/aws/eks-anywhere/release/cli/pkg/util/packages"
)

var HelmLog = ctrl.Log.WithName("HelmLog")
Expand Down Expand Up @@ -71,7 +72,7 @@ func GetHelmDest(d *helmDriver, r *releasetypes.ReleaseConfig, sourceImageURI, a
var chartPath string

sourceRemoteType := "source"
if assetName == "eks-anywhere-packages" || assetName == "ecr-token-refresher" || assetName == "credential-provider-package" {
if packagesutils.NeedsPackagesAccountArtifacts(r) && (assetName == "eks-anywhere-packages" || assetName == "ecr-token-refresher" || assetName == "credential-provider-package") {
sourceRemoteType = "packages"
}
err := d.HelmRegistryLogin(r, sourceRemoteType)
Expand Down
5 changes: 3 additions & 2 deletions release/cli/pkg/images/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import (
releasetypes "github.com/aws/eks-anywhere/release/cli/pkg/types"
artifactutils "github.com/aws/eks-anywhere/release/cli/pkg/util/artifacts"
commandutils "github.com/aws/eks-anywhere/release/cli/pkg/util/command"
packagesutils "github.com/aws/eks-anywhere/release/cli/pkg/util/packages"
)

func PollForExistence(devRelease bool, authConfig *docker.AuthConfiguration, imageUri, imageContainerRegistry, releaseEnvironment, branchName string) error {
Expand Down Expand Up @@ -129,7 +130,7 @@ func GetSourceImageURI(r *releasetypes.ReleaseConfig, name, repoName string, tag
var latestTag string
sourcedFromBranch := r.BuildRepoBranchName
sourceContainerRegistry := r.SourceContainerRegistry
if repoName == "eks-anywhere-packages" || repoName == "ecr-token-refresher" || repoName == "credential-provider-package" {
if packagesutils.NeedsPackagesAccountArtifacts(r) && (repoName == "eks-anywhere-packages" || repoName == "ecr-token-refresher" || repoName == "credential-provider-package") {
sourceContainerRegistry = r.PackagesSourceContainerRegistry
}
if r.DevRelease || r.ReleaseEnvironment == "development" {
Expand Down Expand Up @@ -157,7 +158,7 @@ func GetSourceImageURI(r *releasetypes.ReleaseConfig, name, repoName string, tag
}
if !r.DryRun {
sourceEcrAuthConfig := r.SourceClients.ECR.AuthConfig
if repoName == "eks-anywhere-packages" || repoName == "ecr-token-refresher" || repoName == "credential-provider-package" {
if packagesutils.NeedsPackagesAccountArtifacts(r) && (repoName == "eks-anywhere-packages" || repoName == "ecr-token-refresher" || repoName == "credential-provider-package") {
sourceEcrAuthConfig = r.SourceClients.Packages.AuthConfig
}
err := PollForExistence(r.DevRelease, sourceEcrAuthConfig, sourceImageUri, sourceContainerRegistry, r.ReleaseEnvironment, r.BuildRepoBranchName)
Expand Down
8 changes: 6 additions & 2 deletions release/cli/pkg/operations/upload.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ import (
"github.com/aws/eks-anywhere/release/cli/pkg/helm"
"github.com/aws/eks-anywhere/release/cli/pkg/images"
releasetypes "github.com/aws/eks-anywhere/release/cli/pkg/types"
packagesutils "github.com/aws/eks-anywhere/release/cli/pkg/util/packages"
)

func UploadArtifacts(ctx context.Context, r *releasetypes.ReleaseConfig, eksaArtifacts releasetypes.ArtifactsTable, isBundleRelease bool) error {
Expand All @@ -43,8 +44,11 @@ func UploadArtifacts(ctx context.Context, r *releasetypes.ReleaseConfig, eksaArt
errGroup, ctx := errgroup.WithContext(ctx)

sourceEcrAuthConfig := r.SourceClients.ECR.AuthConfig
packagesSourceEcrAuthConfig := r.SourceClients.Packages.AuthConfig
releaseEcrAuthConfig := r.ReleaseClients.ECRPublic.AuthConfig
var packagesSourceEcrAuthConfig *docker.AuthConfiguration
if packagesutils.NeedsPackagesAccountArtifacts(r) {
packagesSourceEcrAuthConfig = r.SourceClients.Packages.AuthConfig
}

packagesArtifacts := map[string][]releasetypes.Artifact{}
if isBundleRelease {
Expand Down Expand Up @@ -158,7 +162,7 @@ func handleImageUpload(_ context.Context, r *releasetypes.ReleaseConfig, package
sourceImageUri := artifact.Image.SourceImageURI
releaseImageUri := artifact.Image.ReleaseImageURI
sourceEcrAuthConfig := defaultSourceEcrAuthConfig
if strings.Contains(sourceImageUri, "eks-anywhere-packages") || strings.Contains(sourceImageUri, "ecr-token-refresher") || strings.Contains(sourceImageUri, "credential-provider-package") {
if packagesutils.NeedsPackagesAccountArtifacts(r) && strings.Contains(sourceImageUri, "eks-anywhere-packages") || strings.Contains(sourceImageUri, "ecr-token-refresher") || strings.Contains(sourceImageUri, "credential-provider-package") {
sourceEcrAuthConfig = packagesSourceEcrAuthConfig
}
fmt.Printf("Source Image - %s\n", sourceImageUri)
Expand Down
1 change: 1 addition & 0 deletions release/cli/pkg/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ type ReleaseConfig struct {
ReleaseDate string
ReleaseTime time.Time
DevRelease bool
BundleRelease bool
DryRun bool
Weekly bool
ReleaseEnvironment string
Expand Down
23 changes: 23 additions & 0 deletions release/cli/pkg/util/packages/packages.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
//
// 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 packages

import (
releasetypes "github.com/aws/eks-anywhere/release/cli/pkg/types"
)

func NeedsPackagesAccountArtifacts(r *releasetypes.ReleaseConfig) bool {
return r.DevRelease || (r.ReleaseEnvironment == "development" && r.BundleRelease)
}
Loading