oslabs-beta
ohana
JavaScript

Ohana is an internal k8s platform that enables devs to create their own virtual namespaces and virtual clusters

Last updated Jun 7, 2025
72
Stars
23
Forks
0
Issues
0
Stars/day
Attention Score
22
Language breakdown
JavaScript 95.2%
CSS 2.4%
Dockerfile 2.1%
HTML 0.2%
Files click to expand
README

To run the app locally, follow the instructions below

For extended documentation, please visit our website

Run the following command to install the necessary dependencies:

install

When the dependencies are finished installing, run the following to concurrently bundle the application's assets and start the Express server in a

environment:

Ensure helm has been installed. You can do so with these commands:

version
to check your version. Please reference helm for further instructions based on your OS

Ensure vCluster has been installed:

-v
to check your version. Please reference the following to download for your respective OS or visit vCluster:

Intel Mac

curl -s -L "https://github.com/loft-sh/vcluster/releases/latest" | sed -nE 's!."([^"]vcluster-darwin-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o vcluster && chmod +x vcluster;

sudo mv vcluster /usr/local/bin;

Silicon Mac
curl -s -L "https://github.com/loft-sh/vcluster/releases/latest" | sed -nE 's!."([^"]vcluster-darwin-arm64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o vcluster && chmod +x vcluster; sudo mv vcluster /usr/local/bin;
Windows
md -Force "$Env:APPDATA\vcluster"; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]'Tls,Tls11,Tls12';

Invoke-WebRequest -UseBasicParsing ((Invoke-WebRequest -URI "https://github.com/loft-sh/vcluster/releases/latest" -UseBasicParsing).Content -replace "(?ms)."([^"]vcluster-windows-amd64.exe)".*","https://github.com/$1") -o $Env:APPDATA\vcluster\vcluster.exe;

$env:Path += ";" + $Env:APPDATA + "\vcluster";

[Environment]::SetEnvironmentVariable("Path", $env:Path, [System.EnvironmentVariableTarget]::User);

Linux AMD
curl -s -L "https://github.com/loft-sh/vcluster/releases/latest" | sed -nE 's!."([^"]vcluster-linux-amd64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o vcluster && chmod +x vcluster;

sudo mv vcluster /usr/local/bin;

Linux ARM
curl -s -L "https://github.com/loft-sh/vcluster/releases/latest" | sed -nE 's!."([^"]vcluster-linux-arm64)".*!https://github.com\1!p' | xargs -n 1 curl -L -o vcluster && chmod +x vcluster;

sudo mv vcluster /usr/local/bin;

To run the application, execute
run dev

After the application finishes compiling, you should be served the Ohana user interface on

:8080
, with the server listening on
:3000
. You should see a login screen rendered to your browser.

🔗 More in this category

© 2026 GitRepoTrend · oslabs-beta/ohana · Updated daily from GitHub