Skip to content
Open
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
3 changes: 2 additions & 1 deletion pkg/cmd/server/start.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@ func NewCommandStartWardleServer(ctx context.Context, defaults *WardleServerOpti
return err
}
flags := cmd.Flags()
if err := flags.Set("feature-gates", "ServerSideApply=false"); err != nil {
// WatchList not yet implemented in the file-based storage backend, see https://github.com/kubescape/storage/issues/320
if err := flags.Set("feature-gates", "ServerSideApply=false,WatchList=false"); err != nil {
return err
}
Comment thread
coderabbitai[bot] marked this conversation as resolved.
return nil
Expand Down
Loading