UiPath Documentation
automation-suite
2024.10
false
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。 新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

Linux の Automation Suite のインストール ガイド

Automation Suite 2024.10.1 にアップグレードできない

説明

Automation Suite 2024.10.0 から Automation Suite 2024.10.1 へのアップグレードは、upgrade-journal 構成マップに関連する問題が原因で失敗する可能性があります。

解決策

この問題を解決するには、次のコマンドを実行して upgrade-journal 構成マップを削除する必要があります。

重要:

このコマンドは 1 回実行する必要があります。 このスクリプトを複数回実行すると、クラスターが不整合なステートになる可能性があります。

# If upgrade-journal cm present in the cluster
cm=$(kubectl -n kube-system get configmap upgrade-journal --ignore-not-found)
if [[ -n "${cm}" ]]; then
  echo "upgrade-journal cm present in the cluster, deleting it"
  ### Create a back of configmap
  kubectl -n kube-system get configmap upgrade-journal -oyaml > upgrade-journal-bk.yaml
  ### Delete configmap
  kubectl -n kube-system delete configmap upgrade-journal
else
 echo "upgrade-journal cm not present in the cluster, proceed with the upgrade"
fi
# If upgrade-journal cm present in the cluster
cm=$(kubectl -n kube-system get configmap upgrade-journal --ignore-not-found)
if [[ -n "${cm}" ]]; then
  echo "upgrade-journal cm present in the cluster, deleting it"
  ### Create a back of configmap
  kubectl -n kube-system get configmap upgrade-journal -oyaml > upgrade-journal-bk.yaml
  ### Delete configmap
  kubectl -n kube-system delete configmap upgrade-journal
else
 echo "upgrade-journal cm not present in the cluster, proceed with the upgrade"
fi
  • 説明
  • 解決策

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

接続

ヘルプ リソース サポート

学習する UiPath アカデミー

質問する UiPath フォーラム

最新情報を取得