mvoitko commented on a change in pull request #14512: URL: https://github.com/apache/superset/pull/14512#discussion_r654848244
########## File path: docs/src/pages/docs/installation/kubernetes.mdx ########## @@ -94,25 +94,21 @@ postgresql: #### Dependencies -You can specify pip packages to be installed before startup, e.g. to install extra database drivers: +You can specify pip packages to be installed before startup. The following example installs the Big Query and Elasticsearch database drivers so that you can connect to those datasources in your Superset installation. ```yaml -additionalRequirements: - - psycopg2 - - redis - - elasticsearch-dbapi - - pymssql - - gsheetsdb - # Force verstion to work around https://github.com/betodealmeida/gsheets-db-api/issues/15 - - moz-sql-parser==4.9.21002 - # For OAuth - - Authlib - # For webdriver / reports - - gevent +bootstrapScript: | + #!/bin/bash + apt-get update -y &&\ + apt-get install -y --no-install-recommends nano &&\ + rm -rf /var/lib/apt/lists/* + pip install psycopg2==2.8.5 \ Review comment: which versions are supported? ########## File path: docs/src/pages/docs/installation/kubernetes.mdx ########## @@ -94,25 +94,21 @@ postgresql: #### Dependencies -You can specify pip packages to be installed before startup, e.g. to install extra database drivers: +You can specify pip packages to be installed before startup. The following example installs the Big Query and Elasticsearch database drivers so that you can connect to those datasources in your Superset installation. ```yaml -additionalRequirements: - - psycopg2 - - redis - - elasticsearch-dbapi - - pymssql - - gsheetsdb - # Force verstion to work around https://github.com/betodealmeida/gsheets-db-api/issues/15 - - moz-sql-parser==4.9.21002 - # For OAuth - - Authlib - # For webdriver / reports - - gevent +bootstrapScript: | + #!/bin/bash + apt-get update -y &&\ + apt-get install -y --no-install-recommends nano &&\ + rm -rf /var/lib/apt/lists/* + pip install psycopg2==2.8.5 \ + redis==3.2.1 \ + pybigquery \ Review comment: why there no fixed versions here? -- 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. For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
