Kubernetes Using Cloud Shell: Deploy a Python Flask Application
In this tutorial, you use an Oracle Cloud Infrastructure account to set up a
Kubernetes cluster. Then, you create a Python application with a Flask framework. Finally,
you deploy your application to your cluster using Cloud Shell.
Key tasks include how to:
Create a Compartment.
Set up a Kubernetes cluster on OCI.
Build a Python application in a Flask framework.
Create a Docker image.
Push your image to OCI Container Registry.
Use Cloud Shell to deploy your Docker application to your cluster.
Repeat for Scope:<second-availability-domain> and
<third-availability-domain>. Each region must have
at least 50 GB of block volume available.
Find out how many Flexible Load Balancers you have available:
Filter for the following options:
Service: LbaaS
Scope:<your-region>. Example:
us-ashburn-1
Resource:<blank>
Compartment:<tenancy-name> (root)
Find the count for the following shapes
Limit Name:lb-flexible-bandwidth-count
Available: minimum 1
Note
This tutorial creates three compute instances with a VM.Standard.E2.1 shape for
the cluster nodes. To use another shape, filter for its core count. For example,
for VM.Standard2.4, filter for Cores for Standard2 based VM and BM
Instances and get the count.
This tutorial creates three compute instances with a VM.Standard.E3.Flex shape
for the cluster nodes. To use another shape, filter for its core count. For
example, for VM.Standard2.4, filter for Cores for Standard2 based VM and BM
Instances and get the count.
This tutorial uses a 'Quick Create' workflow to create a cluster with a public
regional subnet that hosts a flexible load balancer. To use a different load
balancer, you can use a custom workflow to explicitly specify which existing network
resources to use, including the existing subnets in which to create the load
balancers.
To use another bandwidth for the load balancer, filter for its count, for
example 100-Mbps bandwidth or 400-Mbps bandwidth.
After you create a Kubernetes cluster, set up Cloud Shell to access the
cluster.
Sign in to the Oracle Cloud Infrastructure Console.
Open the navigation menu and click Developer Services. Under Containers & Artifacts, click Kubernetes Clusters (OKE).
Click the link to <your-cluster>.
The information about your cluster is displayed.
Click Access Cluster.
Click Cloud Shell Access. Follow the steps in the
dialog. The following steps are provided for your reference.
Click Launch Cloud Shell. Alternatively, from the main
menu, you can click the Cloud Shell icon () and start a
session.
Check your oci CLI version and verify that Cloud Shell is
working.
Copy
oci -v
Create kubeconfig file for your setup. Use the information from Access Your
Cluster dialog.
oci ce cluster create-kubeconfig <use data from dialog>
You get a message
that:
New config written to the Kubeconfig file <your-home-directory>/.kube/config
Note
If the config file is not stored in its default location
(~/.kube/config, you must export the
KUBECONFIG environment variable to point to the
location.
Copy
export KUBECONFIG=$HOME/<new-location>/config
Note
When working with more than one cluster, you specify a specific config
file on the command line. Example:
* Serving Flask app 'hello' (lazy loading)
* Environment: development
* Debug mode: on
* Running on all addresses.
WARNING: This is a development server. Do not use it in a production deployment.
* Running on http://x.x.x.x:5000/ (Press CTRL+C to quit)
* Restarting with stat
* Debugger is active!
* Debugger PIN: xxx-xxx-xxx
Move the app to the background.
Hit Ctrl z.
Enter the following command: bg
Test the app using curl.
In Cloud Shell terminal, enter the following code:
Copy
curl -X GET http://localhost:5000
Output:
<h1>Hello World from Flask!</h1>
Stop the running application.
When you are done testing, get the process ID for your application.
Copy
ps -ef
Stop the process.
Copy
kill <your-pid>
You have successfully created a local Python application with the Flask
framework.
Open the navigation menu and click Developer Services. Under Containers & Artifacts, click Container Registry.
In the left navigation, select <your-compartment-name>.
Click Create Repository.
Create a private repository with your choice of repo name:
Copy
<repo-name> = <image-path-name>/<image-name>
Example: flask-apps/python-hello-app
You are now ready to push your local image to Container
Registry.
Note
Before you can push a Docker image into a registry
repository, the repository must exist in your compartment. If the
repository does not exist, the Docker push command does not work
correctly.
Note
The slash in a repository name does not represent
a hierarchical directory structure. The optional
<image-path-name> helps to organize your
repositories.
With your local Docker image created, push the image to the Container
Registry.
Follow these steps.
Open a terminal window.
Log in to Container Registry:
Copy
docker login <region-key>.ocir.io
You are prompted for your login name and password.
Username:<tenancy-namespace>/<user-name>
Password:<auth-token>
List your local Docker images:
Copy
docker images
The Docker images on your system are displayed. Identify the image you
created in the last section: python-hello-app
Tag your local image with the URL for the registry plus the
repo name, so you can push it to that repo.
Copy
docker tag <your-local-image> <repo-url>/<repo-name>
Replace <repo-url> with:
<region-key>.ocir.io/<tenancy-namespace>/
Replace <repo-name> with:
<image-folder-name>/<image-name> from
the Create a Docker Repository section.
Here is an example after combining both:
docker tag python-hello-app iad.ocir.io/my-namespace/flask-apps/python-hello-app
In this example, the components are:
Repo URL:iad.ocir.io/my-namespace/
Repo name:flask-apps/python-hello-app
Note
OCI Container Registry now supports creating a registry repo in any
compartment rather than only in the root compartment (tenancy). To push the
image to the repo you created, combine the registry URL with the exact repo
name. OCI Container Registry matches the unique repo name and pushes your
image.
Check your Docker images to see if the image is copied.
Copy
docker images
The tagged or the copied image has the same image ID
as your local image.
After you deploy your app, it might take the load balancer a few seconds to
load.
Check if the load balancer is live:
Copy
kubectl get service
Repeat the command until load balancer is assigned an IP address.
Note
While waiting for the load balancer to deploy, you can check the status of
your cluster with these commands:
Get each pods status: kubectl get pods
Get app status: kubectl get deployment
Use the load balancer IP address to connect to your app in a browser:
Copy
http://<load-balancer-IP-address>:5000
The browser displays: <h1>Hello World from
Flask!</h1>
Undeploy your application from the cluster. (Optional) To remove your
application run this command:
Copy
kubectl delete -f app.yaml
Output:
deployment.apps/python-hello-app deleted
service "python-hello-app-lb" deleted
Your application is now removed from your cluster.
What's Next 🔗
You have successfully created a Hello World Python application, deployed it to a Kubernetes
cluster and made it accessible on the internet, using the Flask framework.
Check out these sites to explore more information about development with Oracle
products: