Skip to content

volcano-sh/dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Volcano dashboard

Introduction

The volcano dashboard provides a basic dashboard that can be easily deployed in your kubernetes cluster to show the status of resources including volcano jobs, queues, pods, etc.

Design

You can follow the design doc to learn more about the design details.

Quick Start

Prerequisites

Please follow the guide to install volcano first.

Install volcano dashboard

Login one node of your kubernetes cluster and execute the following command to install volcano dashboard.

kubectl create ns volcano-system

kubectl apply -f https://raw.githubusercontent.com/volcano-sh/dashboard/main/deployment/volcano-dashboard.yaml

Then use the following command to map the traffic to node.

kubectl port-forward svc/volcano-dashboard 8080:80 -n volcano-system --address 0.0.0.0

Access the dashboard by navigate to http://$YOUR_NODE_IP:8080 in your browser.

Development

You can build the volcano dashboard images locally. Please use the following command to build docker images of volcano dashboard.

Clone the repo.

git clone https://github.com/volcano-sh/dashboard.git

Build images.

// build frontend image.
docker build -t frontend:dev . -f deployment/build/frontend/Dockerfile 
// build backend image.
docker build -t backend:dev . -f deployment/build/backend/Dockerfile

After that you can replace the images in volcano-dashboard.yaml to verify the result.

Releases

No releases published

Packages

No packages published

Languages