On Saturday, March 15 from 8:00 AM to 9:00 AM, we will be performing an upgrade of the GitLab system. During that time, GitLab and git services on git.unl.edu may be unavailable.
This section assumes you've completed the [Quick Start]({{<ref"quick_start.md">}}) section.
If you are in multiple namespaces, you need to be aware of which namespace you’re working in, and either set it with `kubectl config set-context nautilus --namespace=the_namespace` or specify in each `kubectl` command by adding `-n namespace`.
### Explore the system
To get the list of cluster nodes (although you may not have access to all of them), type:
```
kubectl get nodes
```
Right now you probably don't have anything running in the namespace, and these commands will return `No resources found in ... namespace.`. There are three categories we will examine: pods, deployments and services. Later these commands will be useful to see what's running:
List all the pods in your namespace
```
kubectl get pods
```
List all the deployments in your namespace
```
kubectl get deployments
```
List all the services in your namespace
```
kubectl get services
```
### Launch a simple pod
Let’s create a simple generic pod, and login into it.
You can copy-and-paste the lines below. Create the `pod1.yaml` file with the following content: