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.
You can follow the design doc to learn more about the design details.
Before installing the volcano dashboard, please ensure you have:
- A running Kubernetes cluster
kubectlconfigured to access your cluster- Volcano installed on your cluster (follow the Volcano Quick Start Guide)
- Create the volcano-system namespace (if it doesn't exist):
kubectl create ns volcano-system- Deploy the volcano dashboard:
kubectl apply -f https://raw.githubusercontent.com/volcano-sh/dashboard/main/deployment/volcano-dashboard.yaml- Access the dashboard by port-forwarding the service:
kubectl port-forward svc/volcano-dashboard 8080:80 -n volcano-system --address 0.0.0.0- Open your browser and navigate to:
- For local access:
http://localhost:8080 - For remote access:
http://<NODE_IP>:8080(replace<NODE_IP>with your Kubernetes node's IP address)
- For local access:
You can follow our CONTRIBUTING.md.
You can read our LICENSE.
