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 のインストール ガイド
バックアップ ストアの構成を提供する
クラスターをバックアップおよび復元するには、input.json を使用して、クラスター スナップショットの場所を Automation Suite クラスターに対して指定する必要があります。
スケジュールされたバックアップを有効化したり、オンデマンド バックアップを作成したりする前に、input.json に以下の変更を加えます。以降のセクションで説明されている、EKS または AKS の該当する構成に従ってください。
この情報は、Automation Suite クラスターのインストール中に指定することも、後からインストール後の操作としてクラスターの有効化やバックアップの作成時に指定することもできます。
EKS
input.json のサンプル
"snapshot": {
"enabled": true,
"external_object_storage": {
"bucket_name": "<s3_bucket_used_for_backup>",
"storage_type": "s3",
"region": "<s3_bucket_region>"
}
}
"snapshot": {
"enabled": true,
"external_object_storage": {
"bucket_name": "<s3_bucket_used_for_backup>",
"storage_type": "s3",
"region": "<s3_bucket_region>"
}
}
input.json パラメーター
| キー | 値 (Value) |
|---|---|
bucket_name | スナップショットを保存する S3 バケットの名前です。 |
arn | S3 に接続するための ARN です。 バックアップ ObjectStore に接続するために必要な権限をノードが持っている場合、ARN は必要ありません。持っていない場合は、必要な権限を持つ IAM ロールを作成して ARN を追加してください。 |
region | S3 が存在するリージョンです。 |
AKS
input.json のサンプル
"snapshot" : {
"external_object_storage": {
"client_secret": "<azure_service_principal_client_secret>",
"resource_group": "<azure_resource_group_with_storage_account>",
"auth_mode": "ServicePrincipal",
"account_name": "<azure_storage_account_name>",
"account_key": "<azure_storage_account_key>"
"bucket_name": "<azure_container_name>",
"client_id": "<azure_service_principal_id>",
"subscription_id": "<azure_subscription_id>",
"cloud_name": "AzurePublicCloud",
},
"aks_infra_resource_group":"<azure_infra_resource_group>"
}
"snapshot" : {
"external_object_storage": {
"client_secret": "<azure_service_principal_client_secret>",
"resource_group": "<azure_resource_group_with_storage_account>",
"auth_mode": "ServicePrincipal",
"account_name": "<azure_storage_account_name>",
"account_key": "<azure_storage_account_key>"
"bucket_name": "<azure_container_name>",
"client_id": "<azure_service_principal_id>",
"subscription_id": "<azure_subscription_id>",
"cloud_name": "AzurePublicCloud",
},
"aks_infra_resource_group":"<azure_infra_resource_group>"
}
input.json パラメーター
| キー | 値 (Value) |
|---|---|
bucket_name | スナップショットを保存するための Azure Storage アカウント内のコンテナーの名前です。 |
resource_group | スナップショットを保存する対象の Azure Storage アカウントが存在するリソース グループです。 |
auth_mode | 次の値に設定する必要があります: ServicePrincipal |
client_id | サービス プリンシパル認証のクライアント ID です。 |
client_secret | サービス プリンシパル ベースの認証のクライアント シークレットです。 |
account_name | スナップショットをバックアップする Azure Storage アカウントの名前です。 |
account_key | スナップショットをバックアップする必要がある Azure Storage アカウントのアクセス キーです。このパラメーターは任意であり、Automation Suite 2024.10.5 以降でサポートされています。 |
cloud_name | 既定値 AzurePublicCloud AzureUSGovernmentCloud、AzureChinaCloud、AzureGermanCloud のいずれかに適宜変更します。 |
subscription_id | バックアップを保存する Azure Storage アカウントが保存されているサブスクリプション ID です。 |
aks_infra_resource_group | AKS クラスターのマシンとその他のリソースが作成されるリソース グループです。通常は Azure によって作成、管理され、名前の先頭に次のプレフィクスが付きます。 MC_ 他の値はバックアップおよび復元中に変わらない可能性がありますが、この値は復元中に変更されます。これは、新しい AKS クラスターの Kubernetes リソースがプロビジョニングされる新しいリソース グループである必要があります。 |
注:
Azure での認証用のサービス プリンシパルを作成するには、 Microsoft のドキュメントをご覧ください。
バックアップ ストアの構成を適用する
前のセクションの説明に従って input.json に変更を加えた後、次のコマンドを実行して設定を適用します。
./uipathctl manifest apply input.json --only velero --versions versions.json
./uipathctl manifest apply input.json --only velero --versions versions.json