Exemple #1
0
    def __init__(self, *args, **kwargs):

        super(VMAXFCDriver, self).__init__(*args, **kwargs)
        self.common = common.VMAXCommon('FC',
                                        self.VERSION,
                                        configuration=self.configuration)
        self.zonemanager_lookup_service = fczm_utils.create_lookup_service()
Exemple #2
0
    def __init__(self, *args, **kwargs):

        super(VMAXISCSIDriver, self).__init__(*args, **kwargs)
        self.common = (
            common.VMAXCommon(
                'iSCSI',
                self.VERSION,
                configuration=self.configuration))
Exemple #3
0
    def __init__(self, *args, **kwargs):

        super(VMAXISCSIDriver, self).__init__(*args, **kwargs)
        self.active_backend_id = kwargs.get('active_backend_id', None)
        self.common = (common.VMAXCommon(
            'iSCSI',
            self.VERSION,
            configuration=self.configuration,
            active_backend_id=self.active_backend_id))
Exemple #4
0
    def __init__(self, *args, **kwargs):

        super(VMAXFCDriver, self).__init__(*args, **kwargs)
        self.active_backend_id = kwargs.get('active_backend_id', None)
        self.common = common.VMAXCommon(
            'FC',
            self.VERSION,
            configuration=self.configuration,
            active_backend_id=self.active_backend_id)
        self.zonemanager_lookup_service = fczm_utils.create_lookup_service()