Get Started
The following guide with walk you through the necessary steps needed to deploy your first application in Serverless Kubernetes.
Step 1: Create a cluster
When creating a cluster, you will be able to choose which region you would like to use. Please note that each region will have different nodes available.
Step 2: Access the cluster
Once the cluster becomes Available
, you will be able to download the kubeConfig.yaml
file which will be used to access the cluster.
Follow the Kubernetes guide to install the kubectl
CLI tool.
You are then able to access the cluster with the following command:
kubectl --kubeconfig /path/to/kubeConfig.yaml get namespace
This command will display all the namespaces in your cluster, indicating that your CLI is properly configured to communicate with your Kubernetes serverless cluster.
NAME STATUS AGE
default Active 1m
kube-node-lease Active 1m
kube-public Active 1m
kube-system Active 1m
You can read more about Kubernetes and kubectl in the Kubernetes official documentation.
Step 3: Deploy your application
In order to deploy an application in your GPU cluster, you should first review Node Selectors.
You can find some sample applications to deploy in the Examples section.