diff --git a/.github/workflows/operator-early-adoption.yaml b/.github/workflows/operator-early-adoption.yaml index 047e0473c..cc7573b1d 100644 --- a/.github/workflows/operator-early-adoption.yaml +++ b/.github/workflows/operator-early-adoption.yaml @@ -31,7 +31,7 @@ permissions: jobs: test: name: Test - timeout-minutes: 20 + timeout-minutes: 30 strategy: fail-fast: false diff --git a/pkg/install/install.go b/pkg/install/install.go index 1ad68a8cd..3c60e2386 100644 --- a/pkg/install/install.go +++ b/pkg/install/install.go @@ -725,7 +725,6 @@ func (o *Install) provisionOLM() []common.Step { return err } o.l.Info("OLM has been installed") - o.l.Info("Installing Percona OLM Catalog") return nil }, }) @@ -738,6 +737,7 @@ func (o *Install) installCatalog(v *goversion.Version) []common.Step { result = append(result, common.Step{ Desc: "Install Percona OLM Catalog", F: func(ctx context.Context) error { + o.l.Info("Installing Percona OLM Catalog") if err := o.kubeClient.InstallPerconaCatalog(ctx, v, o.config.CatalogNamespace); err != nil { o.l.Errorf("failed installing OLM catalog: %v", err) return err diff --git a/pkg/kubernetes/kubernetes.go b/pkg/kubernetes/kubernetes.go index 323dd5369..2c880d691 100644 --- a/pkg/kubernetes/kubernetes.go +++ b/pkg/kubernetes/kubernetes.go @@ -407,6 +407,8 @@ func (k *Kubernetes) InstallPerconaCatalog(ctx context.Context, version *goversi return err } + k.l.Debugf("Initial version %s", version.String()) + k.l.Debugf("Initial version %s", everestVersion.EverestChannelOverride) k.l.Debugf("Using catalog image %s", everestVersion.CatalogImage(version)) if err := unstructured.SetNestedField(o, everestVersion.CatalogImage(version), "spec", "image"); err != nil { return err