We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2b1901 commit aca169dCopy full SHA for aca169d
pkg/controller/controller.go
@@ -674,14 +674,14 @@ func (c *Controller) Run(ctx context.Context) {
674
util.LogFatalAndExit(err, "failed to set NB_Global option use_ct_inv_match")
675
}
676
677
- if err := c.InitDefaultVpc(); err != nil {
678
- util.LogFatalAndExit(err, "failed to initialize default vpc")
679
- }
680
-
681
if err := c.InitOVN(); err != nil {
682
util.LogFatalAndExit(err, "failed to initialize ovn resources")
683
684
+ if err := c.InitDefaultVpc(); err != nil {
+ util.LogFatalAndExit(err, "failed to initialize default vpc")
+ }
+
685
// sync ip crd before initIPAM since ip crd will be used to restore vm and statefulset pod in initIPAM
686
if err := c.initSyncCrdIPs(); err != nil {
687
util.LogFatalAndExit(err, "failed to sync crd ips")
0 commit comments