-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Wait until istio cni files appear before copying them (#1262)
* fix: Wait until istio cni files appear before copying them Signed-off-by: aerosouund <[email protected]> * fix: Use CNAO v0.94 Previous version of CNAO introduced a problem with passt binding Signed-off-by: aerosouund <[email protected]> * fix: Change CNAO custom resource to not have multus in case multus is enabled This logic is controlled by the cluster-up variable KUBEVIRT_WITH_MULTUS_V3. If this variable is passed then it will get parsed as a gocli flag, which then gets added to the node config using the nodesconfig.WithMultus(deployMultus) line in run.go In this case multus is omitted from the CNAO CR and deployed using its actual manifests Signed-off-by: aerosouund <[email protected]> * fix: Remove CNAO patch from istio operator This is the same configuration that existed prior to #1217 getting merged. Ths addition of this lead to troubles with istio passt binding, as passt wasn't able to bind to port 22 due to insufficient permissions Signed-off-by: aerosouund <[email protected]> * test: Create test cases to assert CNAO is creating the addons config with and without Multus properly when passing the multusEnabled argument Signed-off-by: aerosouund <[email protected]> --------- Signed-off-by: aerosouund <[email protected]>
- Loading branch information
1 parent
4cc1018
commit 88a4f6b
Showing
9 changed files
with
139 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
--- | ||
apiVersion: v1 | ||
kind: Namespace | ||
metadata: | ||
name: cluster-network-addons | ||
labels: | ||
name: cluster-network-addons | ||
openshift.io/cluster-monitoring: "true" | ||
openshift.io/cluster-monitoring: "true" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters