コード例 #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()
コード例 #2
0
    def __init__(self, *args, **kwargs):

        super(VMAXISCSIDriver, self).__init__(*args, **kwargs)
        self.common = (
            common.VMAXCommon(
                'iSCSI',
                self.VERSION,
                configuration=self.configuration))
コード例 #3
0
ファイル: iscsi.py プロジェクト: scottwedge/cinder
    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))
コード例 #4
0
ファイル: fc.py プロジェクト: homolkad/deb-cinder
    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()