onestop

OneStop is a data discovery system being built by CIRES researchers on a grant from the NOAA National Centers for Environmental Information. We welcome contributions from the community!

This project is maintained by cedardevs

Developer Documentation Home

Estimated Reading Time: 5 minutes

Developer Guide

Table of Contents

Setup

Clone OneStop Code

`git clone https://github.com/cedardevs/onestop.git`

Minimum Local Requirements

Run OneStop

Run the command below to startup OneStop via the skaffold dev configuration:

skaffold dev

If you are running this for the first time it may fail to download all the images at once. Try re-executing skaffold dev a few times. You can also try skaffold dev --status-check=false. View the quick-tips for more options.

Verify OneStop Starts Up

Estimate startup time is ~13 minutes, ~18 minutes if this is a fresh startup and it has to download images.

  1. Run kubectl get pods and verify it displays:
    • List of expected pods
    • The number in the Ready column should indicate all complete, like 1/1 or 2/2 but not a partial like 1/2
    • Status column should be Running. CrashLoopBackOff indicates the pod failed to start.
  2. Browse to OneStop

View Quick Tips for troubleshooting information.


Top of Page