GitHub user dosubot[bot] added a comment to the discussion: Production deployment issue in
<!-- Answer --> Superset serves HTTP by default, not HTTPS, so you should access it at [http://localhost:8088/](http://localhost:8088/) after running the port-forward command—not https://localhost:8088/ (which will fail unless you’ve set up your own HTTPS ingress or proxy) [source](https://github.com/apache/superset/blob/2e9939baf253e607a54722b1996baaf625e72133/helm/superset/values.yaml). If you still see "site can't be reached" at http://localhost:8088/, check the following: - Run `kubectl get pods -n superset` and make sure the Superset pod is in the Running and Ready state. - Run `kubectl logs <superset-pod> -n superset` for the main Superset web pod to check for errors. - Run `kubectl get endpoints superset -n superset` to verify the service is targeting the correct pod(s). - If the pod is running and logs look good, check for any local firewall or network policy blocking port 8088. - If you have any custom port or protocol settings in your values.yaml, make sure they match the defaults (HTTP/8088). If all else fails, try `kubectl port-forward pod/<superset-pod> 8088:8088 -n superset` to rule out service misconfiguration. Let me know what you find from these checks! <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/36671798-c6ed-40d2-8354-71162955effa?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/36671798-c6ed-40d2-8354-71162955effa?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/36671798-c6ed-40d2-8354-71162955effa?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/36671798-c6ed-40d2-8354-71162955effa?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/36671798-c6ed-40d2-8354-71162955effa?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/36671798-c6ed-40d2-8354-71162955effa?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/36671798-c6ed-40d2-8354-71162955effa?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/33957) GitHub link: https://github.com/apache/superset/discussions/33957#discussioncomment-13614797 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
