automation-suite
2023.10
false
- 概要
- 要件
- インストール
- インストール後
- 移行とアップグレード
- 監視とアラート機能
- クラスターの管理
- 製品固有の設定
- トラブルシューティング
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
新しいコンテンツの翻訳は、およそ 1 ~ 2 週間で公開されます。

EKS/AKS の Automation Suite のインストール ガイド
最終更新日時 2025年11月13日
SQL 接続文字列を
クラスターの
orchestrator.testautomation セクション
構成ファイルの場合、 uipathctl バイナリは接続を無視します
文字列に置き換え、代わりに [ orchestrator ] セクションの下の を使用します。 として
次のサンプルは、無視される接続文字列が
sql_connection_str
パラメーター:"orchestrator": {
"testautomation": {
"enabled": true,
"sql_connection_str": "Server=tcp:new-sql-server-name,1433;Initial Catalog=new-db;Persist Security Info=False;User Id=test;Password='************';MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;Max Pool Size=100;"
}
}"orchestrator": {
"testautomation": {
"enabled": true,
"sql_connection_str": "Server=tcp:new-sql-server-name,1433;Initial Catalog=new-db;Persist Security Info=False;User Id=test;Password='************';MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=True;Connection Timeout=30;Max Pool Size=100;"
}
}この問題に対処するには、次の手順を実行します。
-
sql_connection_strパラメーターの値として指定した SQL 接続文字列を Base64 エンコードします。echo -n "<sql_connection_str under orchestrator.testautomation in cluster config file>" | base64 -decho -n "<sql_connection_str under orchestrator.testautomation in cluster config file>" | base64 -d -
次のコマンドを実行して、
orchestrator-secretsシークレットを編集します。kubectl edit secret orchestrator-secrets -n uipathkubectl edit secret orchestrator-secrets -n uipath -
シークレットで、
sqlConnectionStringTAパラメーターの値を Base64 でエンコードされた接続文字列の値で更新します。 -
接続文字列が正常に更新されたかどうかを確認します 価値:
kubectl get secret orchestrator-secrets -n uipath -o jsonpath="{.data.sqlConnectionStringTA}" | base64 --decodekubectl get secret orchestrator-secrets -n uipath -o jsonpath="{.data.sqlConnectionStringTA}" | base64 --decode -
ArgoCD アプリの UI で Orchestrator の [ 詳細] >> [パラメーター] > [値] > [更新] の値>内に移動します。
-
次のサンプルに示すように、[
connectionStrings] セクションで、TestAutomationパラメーターの値を接続文字列のプレーンテキストの値で更新します。connectionStrings: TestAutomation: <Plain-text value of sql_connection_str under orchestrator.testautomation in cluster config file>connectionStrings: TestAutomation: <Plain-text value of sql_connection_str under orchestrator.testautomation in cluster config file>