> ## Documentation Index
> Fetch the complete documentation index at: https://enterprise-docs.dify.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# プラグインのデバッグ

> このページは先行公開版です。内容は今後予告なく更新される可能性があります。

## Helm チャートの値を表示

```bash theme={null}
helm show values dify/dify
```

これは Helm チャートの値におけるプラグインデバッグ設定の例です。

```yaml theme={null}
plugin_daemon:
  serviceType: "NodePort"
  remoteInstallHost: "127.0.0.1"
  remoteInstallPort: "5003"
```

* `serviceType`
  * プラグインデーモンを公開するためのサービスのタイプです。`NodePort` または `LoadBalancer` を指定できます。
  * `NodePort`: 各ノードの IP アドレスと静的ポートでサービスを公開します。
  * `LoadBalancer`: サポートされているクラウドプロバイダーに外部ロードバランサーを作成し、トラフィックをプラグインデーモンにルーティングします。
  * 詳細は [Kubernetes Service Types documentation](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types) を参照してください。

* `remoteInstallHost`: `Node` IP または `LoadBalancer` の IP です。
  * `NodePort` を使用する場合、Kubernetes ノードのいずれかの IP を指定してください。
  * `LoadBalancer` を使用する場合、ロードバランサーの IP を指定してください。

* `remoteInstallPort`: プラグインデーモンがデバッグ用にリッスンしているポートです。
  * `NodePort` を使用する場合、サービスに割り当てられたポートを指定してください。
  * `LoadBalancer` を使用する場合、ロードバランサーで公開されるポートを指定してください。
