You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I change it to the below it opens the dashboard when port 8080 has already been allocated but the dashboard at http://localhost:8081/ doesn't show the APIs.
Port forward to 8080, e.g., kubectl port-forward --namespace kusk-system services/kusk-gateway-envoy-fleet 8080:80.
Launch dashboard and attempt to browse an API and note that nothing is shown. The command below launches the dashboard and prints the output after applying the "fix". Observe that it has been allocated port 8081:
$ kusk dashboard
Forwarding from 127.0.0.1:8081 -> 8080
Forwarding from [::1]:8081 -> 8080
Handling connection for 8081
The text was updated successfully, but these errors were encountered:
https://github.com/kubeshop/kusk-gateway/blob/main/cmd/kusk/cmd/dashboard.go#L158 doesn't use the
dashboardEnvoyFleetExternalPort
.If I change it to the below it opens the dashboard when port
8080
has already been allocated but the dashboard at http://localhost:8081/ doesn't show the APIs.Hence I am reluctant to make the "fix".
Steps to Reproduce
cmd/kusk/cmd/dashboard.go
.8080
, e.g.,kubectl port-forward --namespace kusk-system services/kusk-gateway-envoy-fleet 8080:80
.8081
:The text was updated successfully, but these errors were encountered: