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
5 changes: 5 additions & 0 deletions pkg/controller/istio/istio_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@ var (
// Start Watches within the Add function for any resources that this controller creates or monitors. This will trigger
// calls to Reconcile() when an instance of one of the watched resources is modified.
func Add(mgr manager.Manager, opts options.AddOptions) error {
if !opts.EnterpriseCRDExists {
log.V(1).Info("Enterprise CRDs not found. Skipping Istio controller.")
return nil
}

r := newReconciler(mgr, opts)

c, err := ctrlruntime.NewController("istio-controller", mgr, controller.Options{Reconciler: r})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1020,12 +1020,14 @@ spec:
format: int32
type: integer
nftablesMode:
default: Auto
description:
"NFTablesMode configures nftables support in Felix. [Default:
Disabled]"
Auto]"
enum:
- Disabled
- Enabled
- Auto
type: string
nftablesRefreshInterval:
description:
Expand Down
Loading