In this tutorial, you use an Oracle Cloud Infrastructure account to set up a
Kubernetes cluster. Then, you deploy a Node Express application to your cluster.
Key tasks include how to:
Set up a Kubernetes cluster on OCI.
Set up OCI CLI to access your cluster.
Build a Node Express application and Docker Image.
Push your image to OCIR.
Deploy your Node.js Docker application to your cluster.
The following applications on your local environment:
JDK 11 and set JAVA_HOME in .bashrc.
Python 3.6.8+ and pip installer for Python 3
Kubernetes Client 1.11.9+
Apache Maven 3.0+
Docker 19.0.3+
Git 1.8+
Node.js 10+
Note
If you don't want to set up the required applications on your local environment, you
can use Oracle Cloud Infrastructure Cloud Shell instead. The advantage of using
Cloud Shell is all the required tools to manage your application are already installed
and ready to use. Follow the steps one and two in:
If you want to use an OCI Free Tier Linux compute instance to manage your deployment,
the following sections provide information to get the required software installed.
Install a Linux VM with an Always Free compute shape, on Oracle Cloud
Infrastructure. You will need a machine with ssh support to connect
to your Linux instance.
Follow these steps to select your VCN's public subnet and add the ingress rule.
Open the navigation menu and click Networking, and then click Virtual Cloud Networks.
Select the VCN you created with your compute instance.
With your new VCN displayed, click <your-subnet-name> subnet link.
The public subnet information is displayed with the Security Lists at the
bottom of the page. A link to the Default Security List for your VCN
is displayed.
Click the Default Security List link.
The default Ingress Rules
for your VCN are displayed.
Click Add Ingress Rules.
An Add Ingress Rules dialog is
displayed.
Fill in the ingress rule with the following information.
Fill in the ingress
rule as follows:
Stateless: Checked
Source Type: CIDR
Source CIDR: 0.0.0.0/0
IP Protocol: TCP
Source port range: (leave-blank)
Destination Port Range: 3000
Description: Allow HTTP connections
Click Add Ingress Rule.
Now HTTP connections are allowed. Your VCN is
configured for Node Express.
You have successfully created an ingress rule that makes your instance available from
the internet.
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 number of available flexible load balancers:
Limit Name:lb-flexible-count
Available: minimum 1
Note
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.
The Python virtualenv creates a folder that contains all the
executables and libraries for your project.
The virtualenvwrapper is an extension to virtualenv.
It provides a set of commands, which makes working with virtual environments much
more pleasant. It also places all your virtual environments in one place. The
virtualenvwrapper provides tab-completion on environment
names.
Install
virtualenv.
Copy
pip3 install --user virtualenv
Install
virtualenvwrapper.
Copy
pip3 install --user virtualenvwrapper
Find the location of the virtualenvwrapper.sh
script.
Copy
grep -R virtualenvwrapper.sh
Example
paths:
Linux example:
/home/ubuntu/.local/bin/virtualenvwrapper.sh
In the file, input the following text and save the file:
Copy
const express = require('express')
const app = express()
port = 3000
app.get('/', function (req, res) {
res.send('<h1>Hello World from Node.js!</h1>')
})
app.listen(port, function() {
console.log('Hello World app listening on port ' + port);
})
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: node-apps/node-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 your OCI CLI session.
Log in to OCI 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: node-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 node-hello-app iad.ocir.io/my-namespace/node-apps/node-hello-app
In this example, the components are:
Repo URL:iad.ocir.io/my-namespace/
Repo name:node-apps/node-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 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>:3000
The browser displays: <h1>Hello World from
Node.js!</h1>
Undeploy your application from the cluster. (Optional) To remove your
application run this command:
Copy
kubectl delete -f node-app.yaml
Output:
deployment.apps/node-app deleted
service "node-app-lb" deleted
Your application is now removed from your cluster.
What's Next 🔗
You have successfully created a Hello World application, deployed it to a Kubernetes
cluster and made it accessible on the internet, using the Node Express framework.
Check out these sites to explore more information about development with Oracle
products: