Skip to content

Commit

Permalink
images feature to upload to registry
Browse files Browse the repository at this point in the history
  • Loading branch information
alknopfler committed Jul 11, 2024
1 parent 56c5442 commit 22f8c15
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,10 @@
# seactl
SUSE Edge Airgap Tool
SUSE Edge Airgap Tool created to make the airgap process easier for SUSE Edge deployments.

## Requirements

- Helm 3 installed on the machine

## Usage

1. C
4 changes: 2 additions & 2 deletions pkg/airgap/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func generateHelmArtifacts(releaseManifest *config.ReleaseManifest, reg *registr
return err
}

log.Println("Helm chart %s prepared and uploaded successfully!", value)
log.Printf("Helm chart %s prepared and uploaded successfully!\n", value)

}
log.Println(color.InGreen("Helm Chart artifacts pre-loaded in registry successfully!"))
Expand Down Expand Up @@ -165,7 +165,7 @@ func generateImagesArtifacts(releaseManifest *config.ReleaseManifest, reg *regis
return err
}

log.Println("Images %s prepared and uploaded successfully!", value)
log.Printf("Images %s prepared and uploaded successfully!\n", value)

}
log.Println(color.InGreen("Images artifacts pre-loaded in registry successfully!"))
Expand Down

0 comments on commit 22f8c15

Please sign in to comment.