-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
controller: Add cluster-info net-attach-def resource available param
This param will check if net-attach-def is installed on the cluster on every reconcile run. This param is added in order be consumed in future commits to deploy net-attach-def resource. Signed-off-by: Ram Lavi <[email protected]>
- Loading branch information
Showing
2 changed files
with
37 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
package network | ||
|
||
type ClusterInfo struct { | ||
SCCAvailable bool | ||
OpenShift4 bool | ||
MonitoringAvailable bool | ||
IsSingleReplica bool | ||
SCCAvailable bool | ||
OpenShift4 bool | ||
MonitoringAvailable bool | ||
IsSingleReplica bool | ||
NetAttachDefAvailable bool | ||
} |