[DEV] VESSL Docs
  • Welcome to VESSL Docs!
  • GETTING STARTED
    • Overview
    • Quickstart
    • End-to-end Guides
      • CLI-driven Workflow
      • SDK-driven Workflow
  • USER GUIDE
    • Organization
      • Creating an Organization
      • Organization Settings
        • Add Members
        • Set Notifications
        • Configure Clusters
        • Add Integrations
        • Billing Information
    • Project
      • Creating a Project
      • Project Overview
      • Project Repository & Project Dataset
    • Clusters
      • Cluster Integrations
        • Fully Managed Cloud
        • Personal Laptops
        • On-premise Clusters
        • Private Cloud (AWS)
      • Cluster Monitoring
      • Cluster Administration
        • Resource Specs
        • Access Control
        • Quotas and Limits
        • Remove Cluster
    • Dataset
      • Adding New Datasets
      • Managing Datasets
      • Tips & Limitations
    • Experiment
      • Creating an Experiment
      • Managing Experiments
      • Experiment Results
      • Distributed Experiments
      • Local Experiments
    • Model Registry
      • Creating a Model
      • Managing Models
    • Sweep
      • Creating a Sweep
      • Sweep Results
    • Workspace
      • Creating a Workspace
      • Exploring Workspaces
      • SSH Connection
      • Downloading / Attaching Datasets
      • Running a Server Application
      • Tips & Limitations
      • Building Custom Images
    • Serve
      • Quickstart
      • Serve Web Workflow
        • Monitoring Dashboard
        • Service Logs
        • Service Revisions
        • Service Rollouts
      • Serve YAML Workflow
        • YAML Schema Reference
    • Commons
      • Running Spot Instances
      • Volume Mount
  • API REFERENCE
    • What is the VESSL CLI/SDK?
    • CLI
      • Getting Started
      • vessl run
      • vessl cluster
      • vessl dataset
      • vessl experiment
      • vessl image
      • vessl model
      • vessl organization
      • vessl project
      • vessl serve
      • vessl ssh-key
      • vessl sweep
      • vessl volume
      • vessl workspace
    • Python SDK
      • Integrations
        • Keras
        • TensorBoard
      • Utilities API
        • configure
        • vessl.init
        • vessl.log
          • vessl.Image
          • vessl.Audio
        • vessl.hp.update
        • vessl.progress
        • vessl.upload
        • vessl.finish
      • Dataset API
      • Experiment API
      • Cluster API
      • Image API
      • Model API
        • Model Serving API
      • Organization API
      • Project API
      • Serving API
      • SSH Key API
      • Sweep API
      • Volume API
      • Workspace API
    • Rate Limits
  • TROUBLESHOOTING
    • GitHub Issues
    • VESSL Flare
Powered by GitBook
On this page
  • Bring your own clusters
  • Adding custom cluster to VESSL
  1. USER GUIDE
  2. Organization
  3. Organization Settings

Configure Clusters

Adding custom clusters

PreviousSet NotificationsNextAdd Integrations

Last updated 3 years ago

Bring your own clusters

You can easily register your own custom cluster to VESSL whether it's on-premise, on-cloud or a combination of the two.

Adding custom cluster to VESSL

1. Install Helm

VESSL uses , the package manager of Kubernetes. Begin by installing Helm.

curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
brew install helm

2. Helm Install Kubernetes resources

To add Kubernetes cluster to VESSL, you should first create the followings in the cluster:

  • A service account that has all the permissions in a namespace

  • VESSL cluster agent

You can see the preview of result on . Run the following commands to create the required resources in your cluster. You can find your agent access token on the Workspace → Settings → Cluster → New Cluster page. VESSL's cluster agent will automatically add your Kubernetes cluster.

helm repo add vessl https://vessl-ai.github.io/cluster-resources/helm-chart
helm repo update
helm install vessl vessl/cluster-resources \
  --set namespace=vessl \
  --create-namespace \
  --set agent.accessToken=YOUR_AGENT_ACCESS_TOKEN
helm install vessl vessl/cluster-resources \
  --set namespace=vessl \
  --create-namespace \
  --set agent.accessToken=YOUR_AGENT_ACCESS_TOKEN \
  --set nvidiaDevicePlugin.deviceListStrategy=volume-mounts

You can also find this instruction on VESSL's Web Console.

For those who are registering an on-premise cluster and want to , we added volumeListStrategy as Helm values. You can set the values using the following script.

Helm
VESSL's GitHub repository
prevent unprivileged access to GPUs in Kubernetes