0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Openshift VirtulizationでIBM FlashSystem Storageを使用する (FiberChannel Disk)

0
Last updated at Posted at 2026-03-02

#1.はじめに
「Openshift VirtulizationでIBM FlashSystem Storageを使用する」という記事で、3つの方法があることを紹介しましたが、この記事では、FiberChannel Diskについて、導入方法等をご紹介します。

#2. 導入手順
(1)前提条件
・ストレージ・ボリュームを作成し、仮想マシンが動くWorkerノードにマッピング済みであること。

(2)導入手順

  1. PVの作成
    下記のようなyamlでPVを作成します。
apiVersion: v1
kind: PersistentVolume
metadata:
  name: pv-rhel9-rdm
spec:
  capacity:
    storage: 100Gi
  accessModes:
    - ReadWriteMany
  fc:
    targetWWNs: ['500507680d7abd53','500507680d7abd53']
    lun: 63
    fsType: xfs

※wwnとlunは、ホスト上で認識している/dev/disk/by-path/pci--fc-0x-lun-のWWNとLUN#を指定
※fstypeは使用するファイルシステムを指定

  1. PVCの作成
    上記PVを参照するPVCを下記のようなyamlで作成します。
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: pvc-rhel9-rdm
  namespace: vm-on-rdm
spec:
  accessModes:
    - ReadWriteMany
  resources:
    requests:
      storage: 100Gi
  volumeName: pv-rhel9-rdm
  storageClassName: ""

#3. 仮想マシン作成手順
上記で作成したPVCを使用するように、仮想マシンのディスクを構成します。
タイプに「LUN」を指定するところがポイントになります。
image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?