- 概要
- 要件
- インストール
- 前提条件の確認
- インストール パッケージをダウンロードする
- uipathctl cluster
- uipathctl cluster maintenance
- uipathctl cluster maintenance disable
- uipathctl cluster maintenance enable
- uipathctl cluster maintenance is-enabled
- uipathctl cluster upgrade
- uipathctl config
- uipathctl config alerts
- uipathctl config alerts add-email
- uipathctl config alerts remove-email
- uipathctl config alerts update-email
- uipathctl config additional-ca-certificates get
- uipathctl config tls-certificates get
- uipathctl config orchestrator
- uipathctl config orchestrator get-config
- uipathctl config orchestrator update-config
- uipathctl config additional-ca-certificates update
- uipathctl config tls-certificates update
- uipathctl health
- uipathctl health bundle
- uipathctl health check
- uipathctl health diagnose
- uipathctl health test
- uipathctl identity
- uipathctl identity add-host-admin
- uipathctl identity enable-basic-auth
- uipathctl identity get-saml-certificate
- uipathctl identity get-token-signing-certificate
- uipathctl identity rotate-saml-certificates
- uipathctl identity rotate-token-signing-certificates
- uipathctl identity update-saml-certificate
- uipathctl identity update-token-signing-certificate
- uipathctl manifest
- uipathctl manifest apply
- uipathctl manifest diff
- uipathctl manifest get
- uipathctl manifest list-applications
- uipathctl manifest render
- uipathctl prereq
- uipathctl prereq create
- uipathctl prereq run
- uipathctl resource
- uipathctl resource report
- uipathctl snapshot
- uipathctl snapshot backup
- uipathctl snapshot backup create
- uipathctl snapshot backup disable
- uipathctl snapshot backup enable
- uipathctl snapshot delete
- uipathctl snapshot list
- uipathctl snapshot restore
- uipathctl snapshot restore create
- uipathctl snapshot restore delete
- uipathctl snapshot restore history
- uipathctl snapshot restore logs
- uipathctl sso
- uipathctl sso generate-connector
- uipathctl sso generate-overlays
- uipathctl sso generate-rbac
- uipathctl version
- インストール後
- 移行とアップグレード
- 監視とアラート機能
- クラスターの管理
- 製品固有の設定
- トラブルシューティング
バックアップ ストアを構成する
input.json
を使用して、クラスター スナップショットの場所を Automation Suite クラスターに対して指定する必要があります。
input.json
に以下の変更を加えます。以降のセクションで説明されている、EKS または AKS の該当する構成に従ってください。
この情報は、Automation Suite クラスターのインストール中に指定することも、後からインストール後の操作としてクラスターの有効化やバックアップの作成時に指定することもできます。
input.json
のサンプル
"snapshot": {
"external_object_storage": {
"bucket_name": "<s3_bucket_used_for_backup>",
"storage_type": "s3",
"region": "<s3_bucket_region>"
}
}
"snapshot": {
"external_object_storage": {
"bucket_name": "<s3_bucket_used_for_backup>",
"storage_type": "s3",
"region": "<s3_bucket_region>"
}
}
input.json
パラメーター
キー |
値 (Value) |
---|---|
|
スナップショットを保存する S3 バケットの名前です。 |
|
S3 に接続するための ARN です。 バックアップ ObjectStore に接続するために必要な権限をノードが持っている場合、ARN は必要ありません。持っていない場合は、必要な権限を持つ IAM ロールを作成して ARN を追加してください。 |
|
S3 が存在するリージョンです。 |
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_account_name>",
"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_account_name>",
"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) |
---|---|
|
スナップショットを保存するための Azure Storage アカウント内のコンテナーの名前です。 |
|
スナップショットを保存する対象の Azure Storage アカウントが存在するリソース グループです。 |
|
ServicePrincipal に設定されている必要があります。 |
|
サービス プリンシパル認証のクライアント ID です。 |
|
サービス プリンシパル ベースの認証のクライアント シークレットです。 |
|
スナップショットをバックアップする Azure Storage アカウントの名前です。 |
|
既定値は
AzurePublicCloud です。AzureUSGovernmentCloud 、AzureChinaCloud 、AzureGermanCloud のいずれかに適宜変更します。 |
|
バックアップを保存する Azure Storage アカウントが保存されているサブスクリプション ID です。 |
|
AKS クラスターのマシンとその他のリソースが作成されるリソース グループです。通常は Azure によって作成、管理され、名前の先頭に
MC_ が付きます。他の値はバックアップおよび復元中に変わらない可能性がありますが、この値は復元中に変更されます。これは、新しい AKS クラスターの Kubernetes リソースがプロビジョニングされる新しいリソース グループである必要があります。 |