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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
### Bug Fixes

- Fixed issue with Go dependencies caused by removed tag in `openshift/api` repository ([#2466](https://github.com/operator-framework/operator-sdk/issues/2466))
- Fixed a regression in the `operator-sdk run` command that caused `--local` flags to be ignored ([#2478](https://github.com/operator-framework/operator-sdk/issues/2478))

## v0.15.0

Expand Down
2 changes: 1 addition & 1 deletion cmd/operator-sdk/run/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ type runLocalArgs struct {
helmOperatorFlags *hoflags.HelmOperatorFlags
}

func (c runLocalArgs) addToFlags(fs *pflag.FlagSet) {
func (c *runLocalArgs) addToFlags(fs *pflag.FlagSet) {
prefix := "[local only] "
fs.StringVar(&c.operatorFlags, "operator-flags", "",
prefix+"The flags that the operator needs. Example: \"--flag1 value1 --flag2=value2\"")
Expand Down