I’m going to create CI (Continuous Integration) Pipelines for Python project. The pipeline will include build, test, packaging and artifact storage. Furthermore, the pipeline will be automatically triggered when the source code changes (A push to a project in GitLab should trigger the build job). Create Jenkins Job and Integration with GitLab GitLab: Create a…
Blog
Create Orchestration Tool (Jenkins) With Azure Cloud Infrastructure
I’m going to create a Jenkins to enable CI/CD Pipelines. Create a VM Create a Linux VM with the following specifications. Add an inbound security rule that allows access to your Jenkins VM on TCP port 8080. Install Docker and Jenkins Download and add Docker CE GPG key with the following command: Next, add the…
Install Jira with Azure
Create a VM in Azure Install MySQL on VM Login to VM using ssh. To install it, update the package index on your server with apt: Configuring MySQL You will want to run the included security script. Configure your MySQL installation for JIRA. to do this, run the mysql command as a root with a blank…
Install GitLab and Create a Project on Microsoft Azure
VM Creation DNS Name setting Click the virtual machine that you just created earlier, select the Not Configured link next to the DNS name label. GitLab CE Installation Connect your VM and write the command: Single Sign-on navigate to Azure Active Directory > App registrations > New Registration Select New Registration o Name: GitLabCE Supported Account…
Intro to Terraform with AWS (basics of using terraform to manage AWS infrastructure)
Basics of using terraform to setup infrastructure with aws. We define our infrastructure as code and then we hand that code over to terraform and terraform is responsible for managing our entire infrastructure. how we can use terraform to manage an EC2 instance. main.tf Go to the terminal and start terrform. we can see that…
1. Getting Started – Ansible Inventory Tutorial (Connect Ansible to AWS EC2 instance)
The purpose is to get used to the different building blocks of the cloud infrastructure in order to set it up automatically using scripts and Ansible. The infrastructure I am going to set up is: Ansible Inventory Create Ansible configuration file I defined the host that we are going to work with, and folder called…
SOLUTION – The authenticity of host can’t be established error
If you got permission denied error when you try to connect AWS EC2 instance, use this command:
Most basic of AWS – Create VPC and EC2 Instance
Instead of using Virtual box machine, I am going to use cloud. The most important thing is VPC Which stands for Virtual Private Cloud. Inside of VPC, there’s smaller set of hosting resources that are available in AWS Datacenter which is called Availability Zone (AZ). Each zone in a region has redundant and separate power,…
Vagrant Multi Machine setup automation with Ansible Playbook
I’m going to automate configuration of simple microservice architecture application by using Ansible Playbook and Vagrant. Create 3 roles for this archtecture 1. Frontend 2. Backend 3. Database Ansible-Galaxy Create Backend Role tutorial.yaml backend/tasks/main.yaml backend/defaults/main.yaml backend/template/db.config.js.j2 backend/template/tutorials.service.js Ansible-Galaxy Create Nodejs Role nodejs/tasks/main.yml Ansible-Galaxy Create Frontend Role Frontend/tasks/main.yml Frontend/defaults/main.yml Frontend/templates/default.js Ansible-Galaxy Create Database Role database/tasks/main.yml database/defaults/main.yml…
What is the difference between a Virtual machine and a container?
Containers and virtual machines have similar resource isolation and allocation benefits, but function differently because containers virtualize the operating system instead of hardware. Containers are more portable and efficient for this reason and too give us a better understanding of the differences between containers and virtual machines let’s look at a comparison of the two. Virtual…