Skip to content

Commit

Permalink
Make kctrl to exit smoothly on adding the package registry with no ch…
Browse files Browse the repository at this point in the history
…anges

Signed-off-by: rcmadhankumar <[email protected]>
  • Loading branch information
rcmadhankumar committed Sep 25, 2023
1 parent 4a58d51 commit 9fff9dd
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/kind-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Create k8s Kind Cluster
uses: helm/kind-action@v1.7.0
uses: helm/kind-action@v1.8.0
with:
kubectl_version: v1.25.0
cluster_name: kinder
Expand Down
11 changes: 10 additions & 1 deletion cli/pkg/kctrl/cmd/package/repository/add_or_update.go
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,15 @@ func (o *AddOrUpdateOptions) Run(args []string) error {
return err
}

if o.URL == existingRepository.Spec.Fetch.ImgpkgBundle.Image {
repoWatcher := NewRepoTailer(o.NamespaceFlags.Name, o.Name, o.ui, client, RepoTailerOpts{
PrintCurrentState: true,
})
err = repoWatcher.TailRepoStatus()
return err

}

pkgRepository, err := o.updateExistingPackageRepository(existingRepository)
if err != nil {
return err
Expand Down Expand Up @@ -271,7 +280,7 @@ func (o *AddOrUpdateOptions) updateExistingPackageRepository(pkgr *kcpkg.Package

func (o *AddOrUpdateOptions) waitForPackageRepositoryInstallation(client kcclient.Interface) error {
o.statusUI.PrintMessagef("Waiting for package repository reconciliation for '%s'", o.Name)
repoWatcher := NewRepoTailer(o.NamespaceFlags.Name, o.Name, o.ui, client)
repoWatcher := NewRepoTailer(o.NamespaceFlags.Name, o.Name, o.ui, client, RepoTailerOpts{})

err := repoWatcher.TailRepoStatus()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cli/pkg/kctrl/cmd/package/repository/delete.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ func (o *DeleteOptions) Run(args []string) error {

func (o *DeleteOptions) waitForDeletion(client versioned.Interface) error {
o.statusUI.PrintMessagef("Waiting for package repository reconciliation for '%s'", o.Name)
repoWatcher := NewRepoTailer(o.NamespaceFlags.Name, o.Name, o.ui, client)
repoWatcher := NewRepoTailer(o.NamespaceFlags.Name, o.Name, o.ui, client, RepoTailerOpts{})

err := repoWatcher.TailRepoStatus()
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion cli/pkg/kctrl/cmd/package/repository/kick.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ func (o *KickOptions) triggerReconciliation(client kcclient.Interface) error {

func (o *KickOptions) waitForReconciliation(client kcclient.Interface) error {
o.statusUI.PrintMessagef("Waiting for package repository reconciliation for '%s'", o.Name)
repoWatcher := NewRepoTailer(o.NamespaceFlags.Name, o.Name, o.ui, client)
repoWatcher := NewRepoTailer(o.NamespaceFlags.Name, o.Name, o.ui, client, RepoTailerOpts{})

err := repoWatcher.TailRepoStatus()
if err != nil {
Expand Down
23 changes: 20 additions & 3 deletions cli/pkg/kctrl/cmd/package/repository/repo_tailer.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,23 +30,40 @@ type RepoTailer struct {

stopperChan chan struct{}
watchError error
opts RepoTailerOpts

lastSeenDeployStdout string
}

func NewRepoTailer(namespace string, name string, ui ui.UI, client kcclient.Interface) *RepoTailer {
return &RepoTailer{Namespace: namespace, Name: name, ui: ui, statusUI: cmdcore.NewStatusLoggingUI(ui), client: client}
type RepoTailerOpts struct {
PrintCurrentState bool
}

func NewRepoTailer(namespace string, name string, ui ui.UI, client kcclient.Interface, opts RepoTailerOpts) *RepoTailer {
return &RepoTailer{Namespace: namespace, Name: name, ui: ui, statusUI: cmdcore.NewStatusLoggingUI(ui), client: client, opts: opts}
}

func (o *RepoTailer) TailRepoStatus() error {
o.stopperChan = make(chan struct{})
_, err := o.client.PackagingV1alpha1().PackageRepositories(o.Namespace).Get(context.Background(), o.Name, metav1.GetOptions{})
pkgRepo, err := o.client.PackagingV1alpha1().PackageRepositories(o.Namespace).Get(context.Background(), o.Name, metav1.GetOptions{})
if err != nil {
if !(errors.IsNotFound(err)) {
return err
}
}

if o.opts.PrintCurrentState {
appStatus := o.appStatusFromPkgrStatus(pkgRepo.Status)
err = o.printTillCurrent(appStatus)
if err != nil {
return err
}

if cmdapp.HasReconciled(appStatus) {
return nil
}
}

informerFactory := kcexternalversions.NewFilteredSharedInformerFactory(o.client, 30*time.Minute, o.Namespace, func(opts *metav1.ListOptions) {
opts.FieldSelector = fmt.Sprintf("metadata.name=%s", o.Name)
})
Expand Down
34 changes: 34 additions & 0 deletions cli/test/e2e/package_repository_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,36 @@ func TestPackageRepository(t *testing.T) {
kubectl.Run([]string{"get", "pkg/pkg.test.carvel.dev.2.0.0"})
})

logger.Section("adding of existing repository", func() {
kappCtrl.Run([]string{"package", "repository", "add", "-r", pkgrName, "--url", pkgrURL})
})

logger.Section("adding of existing repository with new url", func() {

_, err := kappCtrl.RunWithOpts([]string{"package", "repository", "add", "-r", pkgrName, "--url", "https://carvel.dev"}, RunOpts{
AllowError: true,
})
require.Error(t, err)

kubectl.Run([]string{"get", kind, pkgrName})

kappCtrl.Run([]string{"package", "repository", "add", "-r", pkgrName, "--url", pkgrURL})

out := kappCtrl.Run([]string{"package", "repository", "get", "-r", pkgrName, "--json"})

output := uitest.JSONUIFromBytes(t, []byte(out))

expectedOutputRows := []map[string]string{{
"conditions": "- type: ReconcileSucceeded\n status: \"True\"\n reason: \"\"\n message: \"\"",
"status": "Reconcile succeeded",
"namespace": env.Namespace,
"name": pkgrName,
"source": fmt.Sprintf("(imgpkg) %s", pkgrURL),
"useful_error_message": "",
}}
require.Exactly(t, expectedOutputRows, output.Tables[0].Rows)
})

logger.Section("kicking a repository", func() {
out := kappCtrl.Run([]string{"package", "repository", "kick", "-r", pkgrName})

Expand Down Expand Up @@ -130,6 +160,10 @@ func TestPackageRepository(t *testing.T) {
require.Exactly(t, expectedOutputRows, output.Tables[0].Rows)
})

logger.Section("updating a repository with no change in url", func() {
kappCtrl.Run([]string{"package", "repository", "update", "-r", pkgrName, "--url", pkgrURL})
})

logger.Section("creating a repository in a new namespace that doesn't exist", func() {
kappCtrl.Run([]string{"package", "repository", "add", "-r", pkgrName, "--url", pkgrURL, "-n", newRepoNamespace, "--create-namespace"})

Expand Down

0 comments on commit 9fff9dd

Please sign in to comment.