You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2023/01/13 11:40:19 UTC

[superset] branch master updated: docs(k8s): add note about database driver dependencies to k8s setup (#22712)

This is an automated email from the ASF dual-hosted git repository.

villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 90ae7cde93 docs(k8s): add note about database driver dependencies to k8s setup (#22712)
90ae7cde93 is described below

commit 90ae7cde93cdd20ba6e81b480233d693213e058b
Author: Reid Beels <ma...@reidbeels.com>
AuthorDate: Fri Jan 13 03:40:10 2023 -0800

    docs(k8s): add note about database driver dependencies to k8s setup (#22712)
---
 docs/docs/installation/running-on-kubernetes.mdx | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

diff --git a/docs/docs/installation/running-on-kubernetes.mdx b/docs/docs/installation/running-on-kubernetes.mdx
index 5e96be37b8..61fa84721b 100644
--- a/docs/docs/installation/running-on-kubernetes.mdx
+++ b/docs/docs/installation/running-on-kubernetes.mdx
@@ -123,9 +123,20 @@ init:
 
 #### Dependencies
 
-Install additional packages and do any other bootstrap configuration in this script. For production clusters it's
-recommended to build own image with this step done in CI. The following example installs the Big Query and Elasticsearch
-database drivers so that you can connect to those datasources in your Superset installation.
+Install additional packages and do any other bootstrap configuration in the bootstrap script.
+For production clusters it's recommended to build own image with this step done in CI.
+
+:::note
+
+Superset requires a Python DB-API database driver and a SQLAlchemy
+dialect to be installed for each datastore you want to connect to.
+
+See [Install Database Drivers](/docs/databases/installing-database-drivers) for more information
+
+:::
+
+The following example installs the Big Query and Elasticsearch database drivers so that you can
+connect to those datasources in your Superset installation:
 
 ```yaml
 bootstrapScript: |