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 クラスター間を移行する
- EKS/AKS の Automation Suite から OpenShift の Automation Suite に移行する
- 監視とアラート機能
- クラスターの管理
- 製品固有の設定
- トラブルシューティング
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。
EKS/AKS の Automation Suite のインストール ガイド
Orchestrator の構成は、Kubernetes 構成マップとシークレットの配列で構成され、これらは特定の順序で読み込まれ、構成マップの appSettings セクションに配置されます。
最新の設定が orchestrator-customconfig 設定マップからロードされます。 新しく読み込まれた設定は、同じキーを持つ既存の設定をすべて上書きします。
Orchestrator の現在のカスタム構成を表示するには、 config orchestrator get-config uipathctl コマンドを使用します。
uipathctl config orchestrator get-config --app-settings
{
"key":"value"
}
uipathctl config orchestrator get-config --app-settings
{
"key":"value"
}
appSettingsの設定に必要なuipathctlコマンドは次のとおりです。
uipathctl config orchestrator get-config --app-settings- 現在の設定をキーと値のペアの json ファイルにエクスポートし、編集できるようにします。詳しくは、「 uipathctl config orchestrator get-config 」セクションをご覧ください。uipathctl config orchestrator update-config --app-settings appsettings.json- 変更内容を使用して設定を更新します。詳しくは、「 uipathctl config orchestrator update-config 」セクションをご覧ください。
-
次のコマンドを使用して、現在のカスタム
appSettings構成を json ファイルにエクスポートします。uipathctl config orchestrator get-config --app-settings > appsettings.jsonuipathctl config orchestrator get-config --app-settings > appsettings.json -
必要に応じて、エクスポートした
appsettings.jsonファイルを編集します。次の例に示すように、任意の設定を追加、削除、または変更できます。{ "Triggers.DisableWhenFailedCount": "20", "Triggers.JobsCountStrategy": "NoLimit" }{ "Triggers.DisableWhenFailedCount": "20", "Triggers.JobsCountStrategy": "NoLimit" }注:変更が必要になるたびにファイルを再度エクスポートする必要があります。更新によってすべての設定が上書きされるためです。
-
次のコマンドを使用して、
appSettingsの構成を更新します。uipathctl config orchestrator update-config --app-settings appsettings.json orchestrator config updateduipathctl config orchestrator update-config --app-settings appsettings.json orchestrator config updated