Posts

HYBRID MULTICLOUD COMPUTING-TASK 2

Image
Hello everyone, Now task-2 was assigned so I would like to share my experience on this. Thanks to Vimal Daga sir and the whole team of linuxworld. Task :  Create/launch Application using Terraform 1. Create Security group which allow the port 80. 2. Launch EC2 instance. 3. In this Ec2 instance use the existing key or provided key and security group which we have created in step 1. 4. Launch one Volume using the EFS service and attach it in your vpc, then mount that volume into /var/www/html 5. Developer have uploded the code into github repo also the repo has some images. 6. Copy the github repo code into /var/www/html 7. Create S3 bucket, and copy/deploy the images from github repo into the s3 bucket and change the permission to public readable. 8 Create a Cloudfront using s3 bucket(which contains images) and use the Cloudfront URL to  update in code in /var/www/html  prerequisites: AWS account (if not created) Create an IAM user account and download credentails Download...

HYBRID MULTI-CLOUD COMPUTING TASK-3

Image
The journey with Hybrid Multi-cloud has been fabulous. I have sucessfully completed my 3 task assigned by our mentor, Vimal Daga sir. Thank you Vimal sir for mentoring me. If I am able to complete my task sucessfully its all because of you sir. Task 3: We have to create a web portal for our company with all the security as much as possible. So, we use Wordpress software with dedicated database server. Database should not be accessible from the outside world for security purposes. We only need to public the WordPress to clients. Prerequisted:  AWS account   create a user from IAM service of AWS  Download the credential Download AWS CLI and set the path in the environmental variables I will create my infrastructure on AWS through Terraform Now lets begin: Step 1: Configure AWS and create a profile and add the credentails Step 2:  Provide the provider that is AWS and create the VPC CODE: provider "aws" {   region     = "ap-south-1"   profil...

Amazon Elastic Kubernetes Service

Image
I have been the part of ELASTIC KUBERNETES SERVICE training conducted by LINUX WORLD INFORMATICS Pvt Ltd under the mentorship of World Record Holder Mr. VIMAL DAGA   I would like to say thank you to Vimal Daga sir and the whole team of Linux world for providing such an amazing training.         Amazon Elastic kubernetes Service: Amazon EKS is a managed service that helps make it easier to run Kubernetes on AWS. Through EKS, organizations can run Kubernetes without installing and operating a Kubernetes control plane or worker nodes.Amazon EKS automatically manages the availability and scalability of the Kubernetes control plane nodes that are responsible for starting and stopping containers, scheduling containers on virtual machines, storing cluster data, and other tasks.  Kubernetes Kubernetes is a portable, extensible, open-source platform for managing containerized workloads and services, that facilitates both declarative configuration and autom...