Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
oksana-grishchenko committed Nov 22, 2024
1 parent 60aa55c commit e21c4ab
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/operator-early-adoption.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ permissions:
jobs:
test:
name: Test
timeout-minutes: 20
timeout-minutes: 30

strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion pkg/install/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
},
})
Expand All @@ -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
Expand Down
2 changes: 2 additions & 0 deletions pkg/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e21c4ab

Please sign in to comment.