Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/dominikbraun/graph v0.23.0
github.com/ettle/strcase v0.2.0
github.com/flant/kube-client v1.6.0
github.com/flant/shell-operator v1.15.0
github.com/flant/shell-operator v1.15.1
github.com/go-chi/chi/v5 v5.2.3
github.com/go-openapi/loads v0.23.1
github.com/go-openapi/spec v0.22.0
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,8 @@ github.com/flant/kube-client v1.6.0 h1:g6ksfIgTlrvLgp/Iu1a9c5aC4yPClLplq3w9e/qtY
github.com/flant/kube-client v1.6.0/go.mod h1:dYJyx7aMldXR/F8hlhRxlcEhSkxKcMZV2Oz8d+o/Up4=
github.com/flant/shell-operator v1.15.0 h1:GLk1OzcWNxEDNBFDerwqZdSY8jlGA/12j0GjwFW3yY4=
github.com/flant/shell-operator v1.15.0/go.mod h1:+dzZnSxYJCdIsV9Eo3uYNb9Q83wYnH2x3wUzbJESAzs=
github.com/flant/shell-operator v1.15.1 h1:jCuifSEw3JS4ZqsDJcKT02yU+hUs+9osdt/JhpbLX1g=
github.com/flant/shell-operator v1.15.1/go.mod h1:+dzZnSxYJCdIsV9Eo3uYNb9Q83wYnH2x3wUzbJESAzs=
github.com/flopp/go-findfont v0.1.0 h1:lPn0BymDUtJo+ZkV01VS3661HL6F4qFlkhcJN55u6mU=
github.com/flopp/go-findfont v0.1.0/go.mod h1:wKKxRDjD024Rh7VMwoU90i6ikQRCr+JTHB5n4Ejkqvw=
github.com/fluxcd/flagger v1.36.1 h1:X2PumtNwZz9YSGaOtZLFm2zAKLgHhFkbNv8beg7ifyc=
Expand Down
2 changes: 1 addition & 1 deletion pkg/module_manager/module_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ func (mm *ModuleManager) HandleModuleEnableKubernetesBindings(ctx context.Contex
}
})
if err != nil {
return fmt.Errorf("handle enable kubernetes bindings: %w", err)
return fmt.Errorf("handle enable kubernetes bindings for '%s': %w", mh.GetName(), err)
}
}

Expand Down
Loading