automation-suite
2023.10
false
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
UiPath logo, featuring letters U and I in white
EKS/AKS の Automation Suite のインストール ガイド
Last updated 2024年11月21日

Velero が有効な場合、インストールが失敗する

説明

Velero が有効化されている場合、Automation Suite のインストールが失敗することがあります。

解決策

この問題を修正するには、次の手順に従います。

  1. Helm 3.14 が Automation Suite のインストールに使用するジャンプボックスまたはノート PC で実行されていることを確認します。

  2. 失敗した Helm チャート (この場合は Velero) の設定値を抽出します。

    helm -n velero get values velero > customvals.yamlhelm -n velero get values velero > customvals.yaml
  3. 不足しているイメージのプル シークレットを customvals.yaml ファイルの .image.imagePullSecrets パスの下に追加します。
    image:
      imagePullSecrets:
      - uipathpullsecretimage:
      imagePullSecrets:
      - uipathpullsecret
  4. Velero が既にインストールされている場合は、アンインストールします。

    helm uninstall -n velero velerohelm uninstall -n velero velero
  5. 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>
  6. velerosecrets.txt ファイルをエンコードします。
    export b64velerodata=$(cat velerosecrets.txt | base64)export b64velerodata=$(cat velerosecrets.txt | base64)
  7. 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>
  8. Veleroを再インストールします。

    helm install velero -n velero <path to velero - 3.1.6 helm chart tgz> -f customvals.yamlhelm install velero -n velero <path to velero - 3.1.6 helm chart tgz> -f customvals.yaml

  • 説明
  • 解決策

このページは役に立ちましたか?

サポートを受ける
RPA について学ぶ - オートメーション コース
UiPath コミュニティ フォーラム
Uipath Logo White
信頼とセキュリティ
© 2005-2024 UiPath. All rights reserved.