- 概要
- 要件
- インストール前
- インストール
- インストール後
- 移行とアップグレード
- 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 クラスター間を移行する
- EKS/AKS の Automation Suite から OpenShift の Automation Suite に移行する
- 監視とアラート機能
- クラスターの管理
- 製品固有の設定
- トラブルシューティング
EKS/AKS の Automation Suite のインストール ガイド
Orchestrator は、次のストレージ構成をサポートしています。
- クラスターレベルのストレージ構成
- Orchestrator レベルのストレージ構成
クラスターレベルの構成を外部ストレージと組み合わせて使用することをお勧めします。これにより、Orchestrator が設定を自動的に検出して使用できるため、追加の構成が不要になります。
Azure/Amazon S3 のストレージ バケットを設定する
Orchestratorレベルのストレージ プロバイダーを構成するには、次の手順に従って Orchestrator パラメーターを編集します。詳細については、「 Orchestrator のパラメーターを設定する」をご覧ください。
-
以下の例に示すように、構成ファイルの
orchestrator下に、ストレージの種類と接続文字列が指定されたlegacy_storage_providerセクションを追加します。"orchestrator": { "enabled": true, "legacy_object_storage": { "type": "Azure", "connection_string": "DefaultEndpointsProtocol=https;AccountName=usr;AccountKey=...;EndpointSuffix=core.windows.net" } }"orchestrator": { "enabled": true, "legacy_object_storage": { "type": "Azure", "connection_string": "DefaultEndpointsProtocol=https;AccountName=usr;AccountKey=...;EndpointSuffix=core.windows.net" } } -
typeパラメーターを使用して、目的のプロバイダーを設定します。設定可能な値は、Azure、AWS、Minioです。次のような、いくつかの考慮事項があります。storage.typeパラメーター値では、大文字と小文字を区別します。FileSystemストレージ構成はサポートされていません。
-
ストレージ プロバイダーの接続文字列を
connection_stringパラメーターを使用して追加します。接続文字列の形式について詳しくは、「UiPath.Orchestrator.dll.config」の「Storage.Location」セクションをご覧ください。
Orchestrator による Amazon や Azure のストレージ バケットへの Web ブラウザー アクセスは、プロバイダー側の同一オリジン ポリシーにより制限される可能性があります。このようなバケットの中身に正常にアクセスするには、Orchestrator からのクロス オリジン要求を許可するように各プロバイダーを設定する必要があります。手順については、「 CORP/CSP の構成」をご覧ください。
ストレージへファイルをアップロードする
ファイルは、 uipathctl コマンド ライン ツールを使用してストレージにアップロードできます。 これを行うには、次のコマンドを使用します。
uipathctl config orchestrator upload [parameters]
uipathctl config orchestrator upload [parameters]
| パラメーター | 説明 |
|---|---|
--storage-directory <string> | ローカル ディスク上のストレージ ディレクトリの場所。 |
--nlog-extensions-directory <string> | ローカル ディスク上の NLog 拡張機能の場所。 |
--securestore-plugins-directory <string> | ローカル ディスク上の Secure Store プラグインの場所。 |
--is-external-storage | ストレージが外部かどうかを示します。 |
--namespace <string> | Automation Suite がデプロイされる名前空間です。 既定値は uipathです。 |
-h, --help | アップロード コマンドのヘルプを提供します。 |
外部ストレージ構成をクラスター レベルで使用する場合は、 コマンドの使用時に --is-external-storage パラメーターを含めて、そのことを示す必要があります。
ストレージのアップロードに関する考慮事項
--storage-directory パラメーターを使用して指定するディレクトリには、少なくとも 1 つのサブディレクトリが含まれている必要があります。すべてのサブディレクトリがストレージにコピーされます。
--storage-directoryを使用してルート フォルダーにアップロードされたファイルは無視されます。
内部ストレージ
サブディレクトリは、サブディレクトリ名をパスとして使用してバケットに直接コピーされます。
外部ストレージ
- サブディレクトリの名前が
orchestrator-hostの場合、その内容がOrchestrator-Hostパスにコピーされます。 - サブディレクトリの名前が
orchestrator-<name>の場合、その内容がO<name>パスにコピーされます。 - それ以外の場合は、サブディレクトリの内容が
<name>パスにコピーされます。
使用例
-
ストレージへのファイルのアップロード:
uipathctl config orchestrator upload --storage-directory /path/to/storage/directoryuipathctl config orchestrator upload --storage-directory /path/to/storage/directory -
NLog 拡張機能をストレージにアップロードする
uipathctl config orchestrator upload --nlog-extensions-directory /path/to/nlog/extensions/directoryuipathctl config orchestrator upload --nlog-extensions-directory /path/to/nlog/extensions/directory -
Secure Store プラグインをストレージにアップロードする:
uipathctl config orchestrator upload --securestore-plugins-directory /path/to/securestore/plugins/directoryuipathctl config orchestrator upload --securestore-plugins-directory /path/to/securestore/plugins/directory -
外部ストレージへのファイルのアップロード:
uipathctl config orchestrator upload --is-external-storage --storage-directory /path/to/storage/directoryuipathctl config orchestrator upload --is-external-storage --storage-directory /path/to/storage/directory -
NLog 拡張機能を外部ストレージにアップロードする
uipathctl config orchestrator upload --is-external-storage --nlog-extensions-directory /path/to/nlog/extensions/directoryuipathctl config orchestrator upload --is-external-storage --nlog-extensions-directory /path/to/nlog/extensions/directory -
Secure Store プラグインを外部ストレージにアップロードする:
uipathctl config orchestrator upload --is-external-storage --securestore-plugins-directory /path/to/securestore/plugins/directoryuipathctl config orchestrator upload --is-external-storage --securestore-plugins-directory /path/to/securestore/plugins/directory