Skip to content

Commit a1c5d04

Browse files
Add tag cli args for pkg repo release (#1664)
* Add tag cli args for pkgr release Signed-off-by: Devanshu <[email protected]> * Add e2e test case for repo release with tag Signed-off-by: Devanshu <[email protected]> --------- Signed-off-by: Devanshu <[email protected]>
1 parent cfe66c0 commit a1c5d04

File tree

2 files changed

+42
-2
lines changed

2 files changed

+42
-2
lines changed

cli/pkg/kctrl/cmd/package/repository/release/release.go

+8-1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ type ReleaseOptions struct {
2727
chdir string
2828
outputLocation string
2929
debug bool
30+
tag string
3031
}
3132

3233
const (
@@ -58,6 +59,7 @@ func NewReleaseCmd(o *ReleaseOptions) *cobra.Command {
5859
cmd.Flags().StringVar(&o.chdir, "chdir", "", "Location of the working directory")
5960
cmd.Flags().StringVar(&o.outputLocation, "copy-to", "", "Output location for pkgrepo-build.yml")
6061
cmd.Flags().BoolVar(&o.debug, "debug", false, "Include debug output")
62+
cmd.Flags().StringVarP(&o.tag, "tag", "t", "", "Tag pushed with imgpkg bundle (default build-<TIMESTAMP>)")
6163

6264
return cmd
6365
}
@@ -157,10 +159,15 @@ func (o *ReleaseOptions) Run() error {
157159

158160
var bundleURL string
159161

162+
tag := o.pkgRepoVersion
163+
if o.tag != "" {
164+
tag = o.tag
165+
}
166+
160167
switch {
161168
case pkgRepoBuild.Spec.Export.ImgpkgBundle != nil:
162169
imgpkgRunner := ImgpkgRunner{
163-
BundlePath: fmt.Sprintf("%s:%s", pkgRepoBuild.Spec.Export.ImgpkgBundle.Image, o.pkgRepoVersion),
170+
BundlePath: fmt.Sprintf("%s:%s", pkgRepoBuild.Spec.Export.ImgpkgBundle.Image, tag),
164171
Paths: []string{"packages"},
165172
UseKbldImagesLock: true,
166173
ImgLockFilepath: tempImgpkgLockPath,

cli/test/e2e/package_repo_release_test.go

+34-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import (
44
"fmt"
55
"io/fs"
66
"os"
7+
"os/exec"
78
"path/filepath"
89
"strings"
910
"testing"
@@ -49,13 +50,45 @@ func TestPackageRepositoryReleaseInteractively(t *testing.T) {
4950
promptOutput.Write(env.Image)
5051
}()
5152

52-
kctrl.RunWithOpts([]string{"pkg", "repo", "release", "--tty=true", "--chdir", workingDir, "--version", "1.0.0"},
53+
version := "1.0.0"
54+
kctrl.RunWithOpts([]string{"pkg", "repo", "release", "--tty=true", "--chdir", workingDir, "--version", version},
5355
RunOpts{NoNamespace: true, StdinReader: promptOutput.StringReader(),
5456
StdoutWriter: promptOutput.BufferedOutputWriter(), Interactive: true})
5557

5658
keysToBeIgnored := []string{"creationTimestamp:", "image"}
5759
verifyPackageRepoBuild(t, keysToBeIgnored)
5860
verifyPackageRepository(t, keysToBeIgnored)
61+
62+
args := []string{"tag", "list", "-i", os.Getenv("KCTRL_E2E_IMAGE")}
63+
cmd := exec.Command("imgpkg", args...)
64+
output, err := cmd.Output()
65+
require.Contains(t, string(output), version)
66+
require.NoError(t, err, "There was an error in listing the tags")
67+
})
68+
69+
logger.Section("Creating a package repository interactively with tags using pkg repo release", func() {
70+
go func() {
71+
promptOutput.WaitFor("Enter the package repository name")
72+
promptOutput.Write(pkgrName)
73+
promptOutput.WaitFor("Enter the registry url")
74+
promptOutput.Write(env.Image)
75+
}()
76+
77+
version := "1.0.0"
78+
tag := "build-tag-0001"
79+
kctrl.RunWithOpts([]string{"pkg", "repo", "release", "--tty=true", "--chdir", workingDir, "--version", version, "--tag", tag},
80+
RunOpts{NoNamespace: true, StdinReader: promptOutput.StringReader(),
81+
StdoutWriter: promptOutput.BufferedOutputWriter(), Interactive: true})
82+
83+
keysToBeIgnored := []string{"creationTimestamp:", "image"}
84+
verifyPackageRepoBuild(t, keysToBeIgnored)
85+
verifyPackageRepository(t, keysToBeIgnored)
86+
87+
args := []string{"tag", "list", "-i", os.Getenv("KCTRL_E2E_IMAGE")}
88+
cmd := exec.Command("imgpkg", args...)
89+
output, err := cmd.Output()
90+
require.Contains(t, string(output), tag)
91+
require.NoError(t, err, "There was an error in listing the tags")
5992
})
6093

6194
logger.Section(fmt.Sprintf("Installing package repository"), func() {

0 commit comments

Comments
 (0)