Cloud Quickstart: Difference between revisions
No edit summary |
No edit summary |
||
Line 40: | Line 40: | ||
==== Example: Ubuntu shell ==== | ==== Example: Ubuntu shell ==== | ||
In this example, we will show how to start up a Ubuntu container and access it | In this example, we will show how to start up a Ubuntu container and access it as a shell prompt. | ||
===== Via Web Interface ===== | ===== Via Web Interface ===== | ||
* From the | <div class="toccolours mw-collapsible mw-collapsed" style="width:400px; overflow:auto;"> | ||
* From the Project page, click on the '''Deploy''' button | |||
* Give your deployment a '''Name''', this name is unique to the Namespace | * Give your deployment a '''Name''', this name is unique to the Namespace | ||
* '''Namespace''' should be automatically selected to the one you created earlier | * '''Namespace''' should be automatically selected to the one you created earlier | ||
Line 52: | Line 53: | ||
[[File:Cloud_menu.jpg]] | [[File:Cloud_menu.jpg]] | ||
* Select '''Execute Shell''' to get an in-browser command line shell into your Ubuntu container | * Select '''Execute Shell''' to get an in-browser command line shell into your Ubuntu container | ||
* From here, you can run commands like you would on a Ubuntu machine | * From here, you can run commands like you would on a Ubuntu machine. Note: you have root level privileges on your container | ||
</div> | |||
===== Via Command Line ===== | ===== Via Command Line ===== | ||
<div class="toccolours mw-collapsible mw-collapsed" style="width:400px; overflow:auto;"> | |||
* This example, assumes you have already installed and configured the <code>kubectl</code> command | * This example, assumes you have already installed and configured the <code>kubectl</code> command | ||
* You can create and update resources in Kubernetes using manifests, manifests are text files that describe the resource and are in YAML format | * You can create and update resources in Kubernetes using manifests, manifests are text files that describe the resource and are in YAML format | ||
* Here is an example manifest to create a simple | * Here is an example manifest to create a simple pod, in this case a Ubuntu container. You will need to personalize '''metadata/namespace''' | ||
<pre> | <pre> | ||
apiVersion: v1 | apiVersion: v1 | ||
Line 63: | Line 66: | ||
metadata: | metadata: | ||
name: ubuntu-shell | name: ubuntu-shell | ||
namespace: | namespace: mypid-project1-example | ||
labels: | labels: | ||
app: ubuntu | app: ubuntu | ||
spec: | spec: | ||
containers: | containers: | ||
- name: ubuntu | - name: ubuntu | ||
image: ubuntu:xenial | image: ubuntu:xenial | ||
stdin: true | |||
tty: true | |||
</pre> | </pre> | ||
* Save this file as '''ubuntu-shell.yml''' | * Save this file as '''ubuntu-shell.yml''' | ||
* Apply the manifest by running <code>kubectl apply -f ubuntu-shell.yml</code> | * Apply the manifest by running <code>kubectl apply -f ubuntu-shell.yml</code> | ||
* You will need to wait for the Deployment to be ready, you can check the status by running <code>kubectl get deployment -n <namespace></code> | * When you run <code>kubectl</code> you need to tell it which Namespace to work in. You can either specific this with the <code>-n <namespace></code> flag, or you can set the current namespace context by running: <code>kubectl config set-context --current --namespace=<namespace></code> this will save you typing the namespace for every command. | ||
* Once your deployment is ready, you can | * You will need to wait for the Deployment to be ready, you can check the status by running <code>kubectl get deployment -n <namespace></code> It should only take a few moments. | ||
* Once your deployment is ready, you can access it's shell by running <code>kubectl exec -it ubuntu-shell -n <namespace> /bin/bash</code> | |||
</div> | |||
=== Networking === | === Networking === | ||
The CS cloud automatically sets up access to the cluster network when you start a Pod. Your Pod gets a random internal IPv4 address that can access other Pods in the cluster network, and the Internet via a gateway. There are also options to access your Pod(s) from external hosts. | |||
==== Services ==== | |||
Since your Pods can come and go as needed, their IP is going to change often. Kubernetes offers a resource called a Service that will allow you to consistently access a Pod or set of Pods by name. You can think of this as a dynamic DNS service. In the Rancher web interface, a service entry will get generated automatically for you anytime you at a '''Port Mapping'''. A good example is creating a database service that can be used by your other Pods in the project: | |||
===== Via Web Interface ===== | |||
<div class="toccolours mw-collapsible mw-collapsed" style="width:400px; overflow:auto;"> | |||
This example will create a MongoDB Pod and Service entry | |||
* From the Project Page, click on '''Deploy''' | |||
* Set '''Name''' to <code>database</code> | |||
* Set '''Docker Image''' to <code>mongo</code> | |||
* Make sure '''Namespace''' is set | |||
* Click on the '''Add Port''' button | |||
* Set '''Publish the container port''' to <code>27017</code> | |||
* Set '''As a''' to <code>Cluster IP (Internal only)</code> -- This setting will make the service only accessible through the internal Kubernetes network | |||
* Click on '''Launch''' | |||
* After just a moment, you will have a MongoDB instance running that can be used by other Pods in your Project. Note: this is for testing only, since any data will be lost when the Pod is killed (we will cover this later...) | |||
* Click on the '''Service Discovery''' menu item | |||
* You will see that Rancher has automatically created a '''database''' service entry for you | |||
* The database will be accessible from other Pods as the hostname: <code>database</code> which is a shorten alias for <code>database.<namespace>.srv.cluster.local</code> | |||
</div> | |||
===== Via Command Line ===== | |||
<div class="toccolours mw-collapsible mw-collapsed" style="width:400px; overflow:auto;"> | |||
Creating the database example with command line is a two step process, but both steps can be combined into a single file. | |||
* Create a <code>database.yml</code> file, you will need personalize '''namespace''': | |||
<pre> | |||
apiVersion: v1 | |||
kind: Pod | |||
metadata: | |||
name: database | |||
namespace: user-project1-db | |||
labels: | |||
app: database | |||
spec: | |||
containers: | |||
- name: database | |||
image: mongo | |||
stdin: true | |||
tty: true | |||
--- | |||
apiVersion: v1 | |||
kind: Service | |||
metadata: | |||
name: database | |||
namespace: user-project1-db | |||
spec: | |||
ports: | |||
- name: tcp27017 | |||
port: 27017 | |||
protocol: TCP | |||
targetPort: 27017 | |||
selector: | |||
app: database | |||
type: ClusterIP | |||
</pre> | |||
* This manifest will do two things: Create a Pod running the MongoDB Docker image labeled with '''app: database''' and Create an internal Service entry that points to any Pod labeled '''app: database''' | |||
* Apply this manifest to create the resources: <code>kubectl apply -f database.yml</code> | |||
* To get the status of your Pod(s): <code>kubectl get pod -n <namespace></code> | |||
* To get the status of your Service(s): <code>kubectl get service -n <namespace></code> | |||
</div> | |||
=== Storage === | === Storage === |
Revision as of 09:22, 8 April 2019
CS Cloud Quickstart Guide
This guide will give you an introduction to using the Computer Science cloud, instructions on starting a simple kubernetes pod, basic networking concepts, and how to use storage. We will show how to do things both in the web user interface and through command line access.
Introduction
The CS cloud is a container-as-a-service resource. It allows you to run Docker based containers on our hardware. Containers allow you to encapsulate your application with all it's needed dependencies and allows the containerized application to run just about anywhere. The CS cloud is based on Kubernetes cluster which is a open-source container orchestration system. We also use Rancher as a UI and proxy interface.
Accessing the Cloud
You access the CS cloud through https://cloud.cs.vt.edu By default, all users get access to the "testing" cluster. This cluster is available for users to play with kubernetes, develop their containerized applications, and Techstaff to test updates to the system. Critical services should not be run on this cluster, we will have other clusters available to actually run containerized user services. You can also use the Rancher UI to control your own kubernetes cluster(s) allowing you to share your personal cluster with others in the department. This can even work behind a private network.
API/Command line access
You can also access the CS cloud via a command line tool called kubectl
.
- Install the kubectl binary on your machine https://kubernetes.io/docs/tasks/tools/install-kubectl/
- You will need a config file to tell kubectl how to connect to the CS cloud, download this file from the Web interface
- Log into https://cloud.cs.vt.edu
- Select the cluster you want to access from the top left menu
- Click on the Cluster menu item at the top, if you are not already there
- Click on the Kubeconfig File button
- You can either download the file or copy and paste the content into your kubectl config file (normally ~/.kube/config on Linux)
- You can also directly access
kubectl
command line directly from the web interface! Just click on the Launch kubectl button.
Creating a Project
When you first log into https://cloud.cs.vt.edu it will show you the clusters you have access to. Normally, this will only be the testing cluster. Also, you won't have any Projects unless someone has shared a Project with you. To get started, you will need to create a Project and a Namespace inside that project:
The Project will need to be created through the web interface.
- Select testing cluster by either clicking the name in the list, or selecting it from the top left menu (Global -> Cluster: testing).
- Select Projects/Namespaces on the top menu
- Click on the Add Project button to create a Project
- Project Name is the only required field, this is set at the cluster scope so the name can conflict with other users' project names. I suggest pre-appending your username to the project name, for example:
mypid-project1
- After you create your project, it will take you to a screen that will allow you to add a namespace to your project.
- Namespaces allow you to group Pods and other resources together, this namespace translates to the Kubernetes namespace so again the names can conflict with other users. Example namespace name:
mypid-project1-db
for grouping all of project1's database pods together. - Click on the Add Namespace button to create a Namespace
- Name is the only field needed
- Click on the Project's title or use the top left menu to select your new Project. This will take you to the Project's page.
- At this point you are ready to start a Pod
Starting a Deployment
Kubernetes groups containers into a Pod. A Pod can be thought of roughly as a single machine with a single IP on the Kubernetes network. Each container running in a Pod can communicate with each other via localhost. The simplest Pod is just a single container, which is what we will show you here. A Deployment is a kubernetes term for a Pod resource that can automatically scale out. For our example, we will only be starting a single Pod.
Example: Ubuntu shell
In this example, we will show how to start up a Ubuntu container and access it as a shell prompt.
Via Web Interface
- From the Project page, click on the Deploy button
- Give your deployment a Name, this name is unique to the Namespace
- Namespace should be automatically selected to the one you created earlier
- Docker Image can be any valid Docker URL, for this example:
ubuntu:xenial
- You can leave the other options on the defaults for now, and click on Launch
- It will take a moment for the system to deploy your Workload, and it will give you a progress indicator that will turn solid green when ready.
- Click on the ... menu icon far right of your Workload to access the menu
- Select Execute Shell to get an in-browser command line shell into your Ubuntu container
- From here, you can run commands like you would on a Ubuntu machine. Note: you have root level privileges on your container
Via Command Line
- This example, assumes you have already installed and configured the
kubectl
command - You can create and update resources in Kubernetes using manifests, manifests are text files that describe the resource and are in YAML format
- Here is an example manifest to create a simple pod, in this case a Ubuntu container. You will need to personalize metadata/namespace
apiVersion: v1 kind: Pod metadata: name: ubuntu-shell namespace: mypid-project1-example labels: app: ubuntu spec: containers: - name: ubuntu image: ubuntu:xenial stdin: true tty: true
- Save this file as ubuntu-shell.yml
- Apply the manifest by running
kubectl apply -f ubuntu-shell.yml
- When you run
kubectl
you need to tell it which Namespace to work in. You can either specific this with the-n <namespace>
flag, or you can set the current namespace context by running:kubectl config set-context --current --namespace=<namespace>
this will save you typing the namespace for every command. - You will need to wait for the Deployment to be ready, you can check the status by running
kubectl get deployment -n <namespace>
It should only take a few moments. - Once your deployment is ready, you can access it's shell by running
kubectl exec -it ubuntu-shell -n <namespace> /bin/bash
Networking
The CS cloud automatically sets up access to the cluster network when you start a Pod. Your Pod gets a random internal IPv4 address that can access other Pods in the cluster network, and the Internet via a gateway. There are also options to access your Pod(s) from external hosts.
Services
Since your Pods can come and go as needed, their IP is going to change often. Kubernetes offers a resource called a Service that will allow you to consistently access a Pod or set of Pods by name. You can think of this as a dynamic DNS service. In the Rancher web interface, a service entry will get generated automatically for you anytime you at a Port Mapping. A good example is creating a database service that can be used by your other Pods in the project:
Via Web Interface
This example will create a MongoDB Pod and Service entry
- From the Project Page, click on Deploy
- Set Name to
database
- Set Docker Image to
mongo
- Make sure Namespace is set
- Click on the Add Port button
- Set Publish the container port to
27017
- Set As a to
Cluster IP (Internal only)
-- This setting will make the service only accessible through the internal Kubernetes network - Click on Launch
- After just a moment, you will have a MongoDB instance running that can be used by other Pods in your Project. Note: this is for testing only, since any data will be lost when the Pod is killed (we will cover this later...)
- Click on the Service Discovery menu item
- You will see that Rancher has automatically created a database service entry for you
- The database will be accessible from other Pods as the hostname:
database
which is a shorten alias fordatabase.<namespace>.srv.cluster.local
Via Command Line
Creating the database example with command line is a two step process, but both steps can be combined into a single file.
- Create a
database.yml
file, you will need personalize namespace:
apiVersion: v1 kind: Pod metadata: name: database namespace: user-project1-db labels: app: database spec: containers: - name: database image: mongo stdin: true tty: true --- apiVersion: v1 kind: Service metadata: name: database namespace: user-project1-db spec: ports: - name: tcp27017 port: 27017 protocol: TCP targetPort: 27017 selector: app: database type: ClusterIP
- This manifest will do two things: Create a Pod running the MongoDB Docker image labeled with app: database and Create an internal Service entry that points to any Pod labeled app: database
- Apply this manifest to create the resources:
kubectl apply -f database.yml
- To get the status of your Pod(s):
kubectl get pod -n <namespace>
- To get the status of your Service(s):
kubectl get service -n <namespace>