Skip to content

Commit

Permalink
Fix code that starts the azure file operator on hypershift
Browse files Browse the repository at this point in the history
  • Loading branch information
gnufied committed Feb 15, 2024
1 parent e5620fd commit e38a378
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/operator/operator_starter.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func (ssr *StandaloneStarter) populateConfigs(clients *csoclients.Clients) []csi
csioperatorclient.GetManilaOperatorConfig(clients, ssr.eventRecorder),
csioperatorclient.GetVMwareVSphereCSIOperatorConfig(),
csioperatorclient.GetAzureDiskCSIOperatorConfig(false),
csioperatorclient.GetAzureFileCSIOperatorConfig(),
csioperatorclient.GetAzureFileCSIOperatorConfig(false),
csioperatorclient.GetSharedResourceCSIOperatorConfig(false),
csioperatorclient.GetIBMVPCBlockCSIOperatorConfig(),
csioperatorclient.GetPowerVSBlockCSIOperatorConfig(false),
Expand Down Expand Up @@ -303,5 +303,6 @@ func (hsr *HyperShiftStarter) populateConfigs(clients *csoclients.Clients) []csi
csioperatorclient.GetPowerVSBlockCSIOperatorConfig(true),
csioperatorclient.GetSharedResourceCSIOperatorConfig(true),
csioperatorclient.GetAzureDiskCSIOperatorConfig(true),
csioperatorclient.GetAzureFileCSIOperatorConfig(true),
}
}

0 comments on commit e38a378

Please sign in to comment.