automation-suite
2023.10
false
- 概要
- 要件
- インストール
- インストール後
- 移行とアップグレード
- 監視とアラート機能
- クラスターの管理
- 製品固有の設定
- トラブルシューティング
- Velero が有効な場合、インストールが失敗する
Velero が有効な場合、インストールが失敗する
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
EKS/AKS の Automation Suite のインストール ガイド
Last updated 2024年11月21日
Velero が有効な場合、インストールが失敗する
この問題を修正するには、次の手順に従います。
-
Helm 3.14 が Automation Suite のインストールに使用するジャンプボックスまたはノート PC で実行されていることを確認します。
-
失敗した Helm チャート (この場合は Velero) の設定値を抽出します。
helm -n velero get values velero > customvals.yaml
helm -n velero get values velero > customvals.yaml -
不足しているイメージのプル シークレットを
customvals.yaml
ファイルの.image.imagePullSecrets
パスの下に追加します。image: imagePullSecrets: - uipathpullsecret
image: imagePullSecrets: - uipathpullsecret -
Velero が既にインストールされている場合は、アンインストールします。
helm uninstall -n velero velero
helm uninstall -n velero velero -
velerosecrets.txt
という名前の新しいファイルを作成します。次の例に示すように、特定の情報を入力します。AZURE_CLIENT_SECRET=<secretforserviceprincipal> AZURE_CLIENT_ID=<clientidforserviceprincipal> AZURE_TENANT_ID=<tenantidforserviceprincipal> AZURE_SUBSCRIPTION_ID=<subscriptionidforserviceprincipal> AZURE_CLOUD_NAME=AzurePublicCloud AZURE_RESOURCE_GROUP=<infraresourcegroupoftheakscluster>
AZURE_CLIENT_SECRET=<secretforserviceprincipal> AZURE_CLIENT_ID=<clientidforserviceprincipal> AZURE_TENANT_ID=<tenantidforserviceprincipal> AZURE_SUBSCRIPTION_ID=<subscriptionidforserviceprincipal> AZURE_CLOUD_NAME=AzurePublicCloud AZURE_RESOURCE_GROUP=<infraresourcegroupoftheakscluster> -
velerosecrets.txt
ファイルをエンコードします。export b64velerodata=$(cat velerosecrets.txt | base64)
export b64velerodata=$(cat velerosecrets.txt | base64) -
velero
名前空間にvelero-azure
シークレットを作成します。次の内容を含めます。apiVersion: v1 kind: Secret metadata: name: velero-azure namespace: velero data: cloud: <put the $b64velerodata value here>
apiVersion: v1 kind: Secret metadata: name: velero-azure namespace: velero data: cloud: <put the $b64velerodata value here> -
Veleroを再インストールします。
helm install velero -n velero <path to velero - 3.1.6 helm chart tgz> -f customvals.yaml
helm install velero -n velero <path to velero - 3.1.6 helm chart tgz> -f customvals.yaml