Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update helm documentation #12932

Merged
merged 3 commits into from
Mar 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1487,13 +1487,14 @@ Install Superset with helm in Kubernetes
----------------------------------------

You can install Superset into Kubernetes with Helm <https://helm.sh/>. The chart is
located in ``install/helm``.
located in the ``helm`` directory.

To install Superset into your Kubernetes:
To install Superset in your Kubernetes cluster with Helm 3, run:

.. code-block:: bash
helm upgrade --install superset ./install/helm/superset
helm dep install ./helm/superset
helm upgrade --install superset ./helm/superset
Note that the above command will install Superset into ``default`` namespace of your Kubernetes cluster.

Expand Down
13 changes: 12 additions & 1 deletion docs/src/pages/docs/installation/installing_scratch.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,15 @@ locally by default at `localhost:8088`) and login using the username and passwor

### Installing Superset with Helm in Kubernetes

See the dedicated [Kubernetes installation](/docs/installation/running-on-kubernetes) page.
You can install Superset into Kubernetes with [Helm](https://helm.sh/). The chart is located in
the `helm/` directory.

To install Superset in your Kubernetes cluster with Helm 3, run:

```
helm dep up ./helm/superset
helm upgrade --install superset ./helm/superset
```

Note that the above command will install Superset into `default` namespace of your Kubernetes
cluster.
11 changes: 10 additions & 1 deletion helm/superset/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
apiVersion: v1
apiVersion: v2
appVersion: "1.0"
description: Apache Superset is a modern, enterprise-ready business intelligence web application
name: superset
Expand All @@ -23,3 +23,12 @@ maintainers:
email: cychiang0823@gmail.com
url: https://github.com/cychiang
version: 0.1.0
dependencies:
anthonycorletti marked this conversation as resolved.
Show resolved Hide resolved
- name: postgresql
version: 10.2.0
repository: https://charts.bitnami.com/bitnami
condition: postgresql.enabled
- name: redis
version: 12.3.0
repository: https://charts.bitnami.com/bitnami
condition: redis.enabled
25 changes: 0 additions & 25 deletions helm/superset/requirements.yaml

This file was deleted.