トラブルシューティング
クイックトラブルシューティング
AIアシスタントは、`cattle-ai-agent-system`ネームスペース内のローカルクラスタに存在します。エージェントログにアクセスして、問題を理解できます。
kubectl get po -n cattle-ai-agent-system
‘rancher-ai-agent’ポッドからログを取得するには:
kubectl logs -n cattle-ai-agent-system -l app=rancher-ai-agent
‘rancher-ai-mcp’ポッドからログを取得するには:
kubectl logs -n cattle-ai-agent-system -l app=rancher-mcp-server
デバッグログを有効にする
エージェントのヘルムデプロイメント中に`log.level=debug`を使用してデバッグログを有効にできます。
|
設定ページを介してモデルを構成した場合は、更新する前に値ファイルに設定を報告してください。 |
values.yamlを更新する
...
log:
level: debug
...
チャートを更新する:
helm upgrade -n cattle-ai-agent-system -f values.yaml rancher-ai-agent oci://registry.suse.com/rancher/charts/rancher-ai-agent
安全でない証明書の背後にあるRancher
Rancherマネージャーが自己署名証明書を使用している場合は、MCPサーバーがRancherに接続できるように`insecureSkipTls=true`を使用してください。
|
設定ページを介してモデルを構成した場合は、更新する前に値ファイルに設定を報告してください。 |
|
チャートがすでにデプロイ済みの場合。チャートをアップグレードする前に、rancher-mcp-serverデプロイメントを削除する必要があります。
|
values.yamlを更新する
...
insecureSkipTls: true
...
チャートを更新する:
helm upgrade -n cattle-ai-agent-system -f values.yaml rancher-ai-agent oci://registry.suse.com/rancher/charts/rancher-ai-agent