automation-suite
2023.10
false
- 概要
- 要件
- インストール
- インストール後
- 移行とアップグレード
- 監視とアラート機能
- クラスターの管理
- 製品固有の設定
- トラブルシューティング
Test Automation SQL の接続文字列は無視されます
重要 :
このコンテンツの一部は機械翻訳によって処理されており、完全な翻訳を保証するものではありません。
EKS/AKS の Automation Suite のインストール ガイド
Last updated 2024年11月21日
Test Automation SQL の接続文字列は無視されます
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 -d
echo -n "<sql_connection_str under orchestrator.testautomation in cluster config file>" | base64 -d -
次のコマンドを実行して、
orchestrator-secrets
シークレットを編集します。kubectl edit secret orchestrator-secrets -n uipath
kubectl edit secret orchestrator-secrets -n uipath -
シークレットで、
sqlConnectionStringTA
パラメーターの値を Base64 でエンコードされた接続文字列の値で更新します。 -
接続文字列が正常に更新されたかどうかを確認します 価値:
kubectl get secret orchestrator-secrets -n uipath -o jsonpath="{.data.sqlConnectionStringTA}" | base64 --decode
kubectl 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>