UiPath Documentation
automation-suite
2024.10
false
Importante :
A tradução automática foi aplicada parcialmente neste conteúdo. A localização de um conteúdo recém-publicado pode levar de 1 a 2 semanas para ficar disponível.
UiPath logo, featuring letters U and I in white

Guia de instalação do Automation Suite no EKS/AKS

Última atualização 15 de abr de 2026

A instalação falha quando o Velero está habilitado

Description

A instalação do Automation Suite pode falhar quando o Velero estiver habilitado.

Solução

Para corrigir o problema, siga as seguintes etapas:

  1. Certifique-se de que o Helm 3.14 seja executado na caixa de jumpbox ou laptop usado para instalar o Automation Suite.

  2. Extraia os valores de configuração do gráfico de Helm com falha, que neste caso é o Velero:

    helm -n velero get values velero > customvals.yaml
    helm -n velero get values velero > customvals.yaml
    
  3. Adicione o segredo de extração de imagem ausente no arquivo,customvals.yaml no caminho:.image.imagePullSecrets

    image:
      imagePullSecrets:
      - uipathpullsecret
    image:
      imagePullSecrets:
      - uipathpullsecret
    
  4. Se o Velero já tiver sido instalado, desinstale-o:

    helm uninstall -n velero velero
    helm uninstall -n velero velero
    
  5. Crie um novo arquivo chamado.velerosecrets.txt Preencha-o com suas informações específicas, conforme mostrado no exemplo a seguir:

    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. Codifique o arquivo:velerosecrets.txt

    export b64velerodata=$(cat velerosecrets.txt | base64)
    export b64velerodata=$(cat velerosecrets.txt | base64)
    
  7. Crie o segredo velero-azure no namespace.velero Inclua o seguinte conteúdo:

    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. Reinstale o 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
    
  • Description
  • Solução

Esta página foi útil?

Conectar

Precisa de ajuda? Suporte

Quer aprender? Academia UiPath

Tem perguntas? Fórum do UiPath

Fique por dentro das novidades