Skip to content

Commit

Permalink
Restore nncp default
Browse files Browse the repository at this point in the history
[1] created new parameter for NNCP setup and now it explicitly require
INSTALL_NNCP=false to be passed along with NETWORK_ISOLATION=false.
restoring the previous behavior by using previous defaults relying
on NETWORK_ISOLATION and NETWORK_BGP.

[1] #969
  • Loading branch information
karelyatin committed Dec 11, 2024
1 parent 189e3dd commit 34b0973
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -448,10 +448,10 @@ CEPH_CLIENT ?= ${OPERATOR_BASE_DIR}/rook/deploy/examples/toolbox.yaml
NMSTATE_NAMESPACE ?= openshift-nmstate
NMSTATE_OPERATOR_GROUP ?= openshift-nmstate-tn6k8
NMSTATE_SUBSCRIPTION ?= kubernetes-nmstate-operator
INSTALL_NMSTATE ?= true
INSTALL_NMSTATE ?= $(NETWORK_ISOLATION) || $(NETWORK_BGP)

# NNCP
INSTALL_NNCP ?= true
INSTALL_NNCP ?= $(NETWORK_ISOLATION) || $(NETWORK_BGP)
NNCP_NODES ?=
NNCP_INTERFACE ?= enp6s0
NNCP_BRIDGE ?= ospbr
Expand Down

0 comments on commit 34b0973

Please sign in to comment.