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

purge most danlging qhub references #1802

Merged
merged 5 commits into from
May 20, 2023
Merged
Show file tree
Hide file tree
Changes from 2 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
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
## Table of contents

- [Table of contents](#table-of-contents)
- [QHub HPC](#qhub-hpc)
- [Nebari](#nebari)
- [Cloud Providers ☁️](#cloud-providers-️)
- [Installation 💻](#installation-)
- [Pre-requisites](#pre-requisites)
- [Install Nebari](#install-nebari)
- [Usage 🚀](#usage-)
- [Nebari HPC](#nebari-hpc)
- [Contributing to Nebari 👩🏻‍💻](#contributing-to-nebari-)
- [Installing the Development version of Nebari ⚙️](#installing-the-development-version-of-nebari-️)
- [Questions? 🤔](#questions-)
Expand All @@ -49,12 +49,6 @@ on [HPC](#nebari-hpc) or [Kubernetes](#nebari) with minimal DevOps overhead.

Not sure what to choose? Check out our [Setup Initialization](docs/source/installation/setup.md) page.

## QHub HPC

The HPC version of Nebari is based on [OpenHPC](https://openhpc.community/).

> NOTE: The tool is currently under development. Curious? Check out the [Nebari HPC](https://github.com/Quansight/qhub-hpc) repository.

## Nebari

The Kubernetes version of Nebari uses [Terraform](https://www.terraform.io/), [Helm](https://helm.sh/), and
Expand Down Expand Up @@ -138,6 +132,12 @@ deployed in minutes.

For detailed step-by-step instructions on how to deploy Nebari, check the [Nebari documentation][docs-deploy].

## Nebari HPC

The HPC version of Nebari is based on [OpenHPC](https://openhpc.community/).

> NOTE: The tool is currently under development. Curious? Check out the [Nebari HPC](https://github.com/Quansight/qhub-hpc) repository.
iameskild marked this conversation as resolved.
Show resolved Hide resolved

## Contributing to Nebari 👩🏻‍💻

Thinking about contributing? Check out our [Contribution Guidelines](CONTRIBUTING.md) to get started.
Expand Down
12 changes: 4 additions & 8 deletions nebari/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,10 @@
NEBARI_IMAGE_TAG = os.getenv("NEBARI_IMAGE_TAG", None)
NEBARI_DASK_VERSION = os.getenv("NEBARI_DASK_VERSION", None)

DO_ENV_DOCS = (
"https://docs.qhub.dev/en/stable/source/installation/setup.html#digital-ocean"
)
AWS_ENV_DOCS = "https://docs.qhub.dev/en/stable/source/installation/setup.html#amazon-web-services-aws"
GCP_ENV_DOCS = "https://docs.qhub.dev/en/stable/source/installation/setup.html#google-cloud-platform"
AZURE_ENV_DOCS = (
"https://docs.qhub.dev/en/stable/source/installation/setup.html#microsoft-azure"
)
DO_ENV_DOCS = "https://www.nebari.dev/docs/how-tos/nebari-do"
AWS_ENV_DOCS = "https://www.nebari.dev/docs/how-tos/nebari-aws"
GCP_ENV_DOCS = "https://www.nebari.dev/docs/how-tos/nebari-gcp"
AZURE_ENV_DOCS = "https://www.nebari.dev/docs/how-tos/nebari-do"
pmeier marked this conversation as resolved.
Show resolved Hide resolved

CONDA_FORGE_CHANNEL_DATA_URL = "https://conda.anaconda.org/conda-forge/channeldata.json"

Expand Down