dosubot[bot] commented on issue #32202:
URL: https://github.com/apache/superset/issues/32202#issuecomment-2647390267

   <!-- Greeting -->
   Hey @leutrims! 👋 It's great to meet you. I'm here to help you with any bugs, 
questions, or contributions you have for Superset. Feel free to ask me anything 
while we wait for a human maintainer to join the conversation.
   
   <!-- Answer -->
   I found some similar threads that might help you resolve these issues:
   
   1. For the issue with the 'chromedriver' executable not being in the PATH, 
you can ensure that the Chrome WebDriver is installed and properly configured 
in your Kubernetes setup. Here's an example configuration for installing Chrome 
and ChromeDriver in a Kubernetes environment:
   
      ```yaml
      supersetWorker:
        command:
          - /bin/sh
          - -c
          - |
            # Install chrome webdriver
            apt-get update
            apt-get install -y wget
            wget 
https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
            apt-get install -y --no-install-recommends 
./google-chrome-stable_current_amd64.deb
            wget 
https://chromedriver.storage.googleapis.com/88.0.4324.96/chromedriver_linux64.zip
            apt-get install -y zip
            unzip chromedriver_linux64.zip
            chmod +x chromedriver
            mv chromedriver /usr/bin
            apt-get autoremove -yqq --purge
            apt-get clean
            rm -f google-chrome-stable_current_amd64.deb 
chromedriver_linux64.zip
   
            # Run
            . {{ .Values.configMountPath }}/superset_bootstrap.sh; celery 
--app=superset.tasks.celery_app:app worker
      ```
   
      This script updates the package list, installs necessary packages, 
downloads and installs Google Chrome, downloads and sets up ChromeDriver, and 
then cleans up unnecessary files 
<sup>[[1]](https://github.com/apache/superset/blob/master/docs/docs/installation/kubernetes.mdx)</sup>.
   
   2. For the "SMTP AUTH extension not supported by server" error, ensure that 
your SMTP settings in `superset_config.py` are configured correctly. If your 
SMTP server does not support authentication, make sure you are not attempting 
to authenticate. You might need to check the specific SMTP server documentation 
or logs for further troubleshooting 
<sup>[[2]](https://github.com/apache/superset/blob/master/docs/docs/configuration/alerts-reports.mdx)</sup>.
   
   These solutions should help you address the issues you're facing with 
Superset.
   
   
   <!-- Dosu Comment Footer -->
   *To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
   
   ---
   <sup>Help Dosu learn! Give it feedback: [Great 
Response](https://app.dosu.dev/response-feedback/a51ab824-977c-4f1d-9c43-f6cdf735c328?feedback_type=great_response)
 | [Irrelevant 
Answer](https://app.dosu.dev/response-feedback/a51ab824-977c-4f1d-9c43-f6cdf735c328?feedback_type=irrelevant_answer)
 | [Incorrect 
Sources](https://app.dosu.dev/response-feedback/a51ab824-977c-4f1d-9c43-f6cdf735c328?feedback_type=incorrect_sources)
 | [Too 
Verbose](https://app.dosu.dev/response-feedback/a51ab824-977c-4f1d-9c43-f6cdf735c328?feedback_type=too_verbose)
 | 
[Hallucination](https://app.dosu.dev/response-feedback/a51ab824-977c-4f1d-9c43-f6cdf735c328?feedback_type=hallucination)
 | 
[Other](https://app.dosu.dev/response-feedback/a51ab824-977c-4f1d-9c43-f6cdf735c328?feedback_type=other)</sup>
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org

Reply via email to