automation-suite
2024.10
false
- 概要
- 要件
- インストール前
- インストール
- インストール後
- 移行とアップグレード
- Automation Suite をアップグレードする
- スタンドアロン製品を Automation Suite に移行する
- 手順 1: スタンドアロンの製品データベースを復元する
- 手順 2: 復元した製品データベースのスキーマを更新する
- 手順 3: Identity 組織データをスタンドアロンから Automation Suite に移動する
- 手順 4: Automation Suite のプラットフォーム データベースをバックアップする
- 手順 5: 組織を Automation Suite にマージする
- 手順 6: 以降済みの製品の接続文字列を更新する
- 手順 7: スタンドアロンの Orchestrator を移行する
- 手順 8: スタンドアロンの Insights を移行する
- 手順 9: スタンドアロンの Test Manager を移行する
- 手順 10: 既定のテナントを削除する
- 単一テナントの移行を実行する
- Automation Suite クラスター間を移行する
- 監視とアラート機能
- クラスターの管理
- 製品固有の設定
- トラブルシューティング
- プロキシ設定でログ ストリーミングが機能しない
- ODF の S3 リクエストに対する 500 エラーとレート制限
- ODF 4.20 の CSI ドライバー トレレーションの設定
OpenShift の Automation Suite のインストール ガイド
最終更新日時 2026年5月8日
説明
OpenShift Data Foundation (ODF) 4.20 は rook 1.18 を使用し、Ceph CSI ドライバーを別の Operator に分解します。その結果、 CSI_PLUGIN_TOLERATIONS 構成マップを介してトレレーションを渡す以前の方法は機能しなくなりました。Ceph CSI ノードプラグインが正しいノードでスケジュールされるようにするには、Ceph CSI ノードプラグインに明示的にトレレーションを追加する必要があります。
解決策
ストレージクラスタが正常に導入されたら、次の手順を実行します。
- 次の設定を YAML ファイルに保存します。
--- apiVersion: csi.ceph.io/v1 kind: Driver metadata: name: openshift-storage.cephfs.csi.ceph.com namespace: openshift-storage spec: nodePlugin: tolerations: - effect: NoSchedule key: node.ocs.openshift.io/storage operator: Equal value: "true" - effect: NoSchedule key: serverless.robot operator: Equal value: "present" - effect: NoSchedule key: node-role.kubernetes.io/control-plane operator: Exists - effect: NoSchedule key: uipath operator: Exists --- apiVersion: csi.ceph.io/v1 kind: Driver metadata: name: openshift-storage.rbd.csi.ceph.com namespace: openshift-storage spec: nodePlugin: tolerations: - effect: NoSchedule key: node.ocs.openshift.io/storage operator: Equal value: "true" - effect: NoSchedule key: serverless.robot operator: Equal value: "present" - effect: NoSchedule key: node-role.kubernetes.io/control-plane operator: Exists - effect: NoSchedule key: uipath operator: Exists--- apiVersion: csi.ceph.io/v1 kind: Driver metadata: name: openshift-storage.cephfs.csi.ceph.com namespace: openshift-storage spec: nodePlugin: tolerations: - effect: NoSchedule key: node.ocs.openshift.io/storage operator: Equal value: "true" - effect: NoSchedule key: serverless.robot operator: Equal value: "present" - effect: NoSchedule key: node-role.kubernetes.io/control-plane operator: Exists - effect: NoSchedule key: uipath operator: Exists --- apiVersion: csi.ceph.io/v1 kind: Driver metadata: name: openshift-storage.rbd.csi.ceph.com namespace: openshift-storage spec: nodePlugin: tolerations: - effect: NoSchedule key: node.ocs.openshift.io/storage operator: Equal value: "true" - effect: NoSchedule key: serverless.robot operator: Equal value: "present" - effect: NoSchedule key: node-role.kubernetes.io/control-plane operator: Exists - effect: NoSchedule key: uipath operator: Exists - 次のコマンドを実行して構成を適用します。
oc apply -f <filename>.yamloc apply -f <filename>.yaml