apisix-helm-chart
apisix-helm-chart copied to clipboard
Missing plugins field in Dashboard ConfigMap
Hi,
When I use the dashboard helm chart and I click on the Plugin button in the sidebar, I get an error and the page won't be displayed because the API call to /apisix/admin/plugins?all=true returns data: null.
The Dashboard ConfigMap (and therefore conf.yaml for manager-api) doesn't have a plugins field.
Could we add the following in the ConfigMap template after the authentication block to select the available plugins in the dashboard:
{{- with .Values.config.plugins }}
plugins:
{{- range . }}
- {{ . }}
{{- end }}
{{- end }}