Join us

Upload your first website using OPTA IaC framework

Image from iOS.jpg

Our article breaks down cloud computing and explains how OPTA service makes deployment easy and user-friendly.

Cloud computing is the availability of resources, services, and tools to enable the quick and effective deployment and management of services and projects on the cloud.

Our article breaks down cloud computing and explains how OPTA service makes deployment easy and user-friendly.

OPTA

OPTA is an Infrastructure as a Service IaC that allows you to build/deploy on the cloud without knowing anything about the cloud deployment process.

OPTA works seamlessly and is more granulated to new users with its well-structured and streamlined code blocks. You can start, deploy, manage and observe your applications without learning much about DevOps.

OPTA supports all major cloud service providers, GCP, Azure, and AWS, and you can work directly with your cloud provider and deploy using OPTA or build locally and use the deployment files .yaml files to deploy

Getting Started

To follow this article, you must have the following installed in your system. Still, before we dive into installing our tools,

Find the complete documentation on OPTA here.

Our article will begin by building locally and see how to deploy a website on docker, and then we will take our knowledge and deploy it on the cloud using OPTA

Perquisite

Docker Installation

Go to the link here and download Docker for your machine. If you are using Linux or macOS you can install your preferred version, but for this tutorial, I will be using Windows but I will drop some hints about macOS.

After installing, click on the docker desktop and you will come across this page

Notice we have Containers/Apps, Images, and Volumes. Let us break them down.

  • Images: These are the environment that contains the underline software or OS of your choice that you want to build on.

For this article, we will use Nginx, one of the most resilient and stable images. Go over to Docker hub and download the image.

Make sure you have docker installed and running on your system.

We are going to open our terminal and run the docker — version to see what version we are currently on, I am running on version 20.10.13, but you might be running on a different version.

Next, we have to build our image, and we will build with “docker pull nginx”. It will install the latest Nginx image to our docker.

It might take some time, so get a cup of coffee while you wait.

Notice, when we run the command, it pulls the latest version of the image since we did not specify a version of Nginx we wanted.

Open your Docker desktop, and you will see under Images that we have the Nginx image or run “docker images” on your terminal.

  • Containers/Apps: A container is a running instance of an image, so we take a snapshot of the image and build a container in which our application will run.
  • We have our image now; let’s run our container.

After running this code we see our new container has been created but let us break down our code block.

  • docker run builds on the image which is nginx
  • — name gives our new project a specific name we can remember as we do not want to an auto-generated name.
  • -d runs the installation in detach modes so it does not show the logs.
  • -p maps our port 8080 to the nginx port 80

If you go to localhost:8080 you will see a default Nginx page.

  • Volumes: are the files or applications we put in our containers, which is the most critical part of this tutorial.

We will pull the website we have created and move it inside the container. You can refill your coffee before you start this part of the tutorial.

I would be using a template-based website from here, you can download this template, or if you have a website on your local computer you can go ahead and use it.

Before running the next line of code please stop the container already running by “docker stop myfirst_website” and delete the container with “docker rm myfirst_website”

The reason why we are pulling it down is so we can use the same port although not really important as we can mount our container to a different port.

Let us now add our volume which is our website like this

First, unzip if you downloaded a template or move your website files to a folder and navigate to that folder like so.

For windows use the code below.

Remember to change the directory for yours.

For Mac use the code below

Go to localhost:8080 to see if your website is deployed and working.

Voila, mine is working.

Let us use OPTA to deploy this to the cloud.

Deploy with OPTA

First, we are going to specify the cloud provider we will be using but I will be using Google Cloud Service GCP.

To set up a GCP account, follow the link

Make sure you register and have an account on GCP before you continue.

You can upload your files to GitHub and clone them into it from the terminal first GCP will authenticate the connection.

Click on the terminal console at the top right corner and it opens a terminal below.

We are saying that it should export our environment into the GCP. platform.

This specifies where to change and add the information of the account and project name.

Let us deploy our service and push the image.

We used the opta deploy to push our image of Nginx with our underline infrastructure to GCP and we also set up and deployed the Kubernetes.

Notice you do not have to know any of these steps, Opta does all the underline structure and deployment.

Woooow.

Conclusion

We are done, you have successfully created and deployed a website on docker and deployed it on GCP using Opta.

Resources


Only registered users can post comments. Please, login or signup.

Start blogging about your favorite technologies, reach more readers and earn rewards!

Join other developers and claim your FAUN account now!

Avatar

Scofield Idehen

LearnHub.africa

@scofield-idehen
Solidity || Python || Reactjs || Cloud Computing Everything else is just hobby
User Popularity
23

Influence

1k

Total Hits

1

Posts