Skip to main content
Hi this is sreenivasulu reddy worked as aws Devops software engineer .I am trainer as well and i was given training to different persons who are working in different companies like Techmahindra, Accenture, Cognizant Technology solutions and wipro etc. And also i was given my training to the persons who are new to IT field and i was explained from basic level My main concentration is to place many number of persons in to software companies and they only clear their interviews by my training they no need any dependancy they will clear interview by themselves only .


From my  training people will learn following tasks related to both aws and devops

These are the topics which I am going to cover

Source code management - Git,
TASK -

1)  Pushing file from local repository to central repository
2)  Jenkins setup by deploying Jenkins warfile into tomcat
3)  Installing Apache httpd , nginx on Red Hat Machine
4)  SSH keygen in between 3 machine ( Password less machines)
5)  Master and Slave setup in Jenkins
6)  Integration of S3 Artifact to the Jenkins
7)  Pipeline Job inside Jenkins (pipeline Creation)
8)
     A)Creating a Docker File by this docker file moving the image from Local to Central docker hub
     B) Jenkins Setup by a Docker File
9)  Creating a Container by running a Job Inside Jenkins
10) Nexus Dashboard Setup
11)  Linux Fundamentals and Basic Commands with Bash Scripting
12) Creating AWS resources on Single Instance (VPC, S3, IAM Role, SNS, Load Balancer, RDS, Route 53, Cloud Watch, Auto-Scaling)
13) Nagios Dashboard setup to monitor etc --- Monitoring tool
14)
       A) Kubernetes Architecture explanation
       B) Setting up a Single node kubernetes cluster on Ubuntu Machine
       C) Adding worker nodes to the master machine
       D) A simple deployment on Kubernetes cluster
15)  Kubernetes Monitoring Tools --
        A) Prometheus
        B) Grafana
        C) EFK  --  Elastic search Fluented and Kibana
16)  Setting up a Kubernetes Cluster by Ansible
17)  Provisining EC2 machine by Terraform
18)  Provisioning EC2 machine by Ansible    Ansible is Configuration management tool
19)  Creating Open Shift environment



    who are intersted to learn course contact me i will give training from basics and my training is always one to one .

                                                                                        M.sreenivasulu Reddy
                                                                                        watsap/Telegram 9154078579
                                                                                         8985579643

Comments

Popular posts from this blog

How to copy files from one server to another server by using ansible copy module

 We have two servers 1.master 2.worker1 create playbook example: play.yml ---   - hosts: all     tasks:     - name: Ansible copy file to remote server       copy:        src: ~/kube-cluster        dest: /root Run ansible playbook  ansible-playbook play.yml

Kubernetes interview questions and answers

1.H ow to setup kubernetes dashboard on ubuntu16.04 cluster? To create kubernetes dashboard follow below link https://docs.aws.amazon.com/eks/latest/userguide/dashboard-tutorial.html To deploy the Metrics Server kubectl apply -f https://github.com/kubernetes-sigs/metrics-server/releases/download/v0.3.6/components.yaml kubectl get deployment metrics-server -n kube-system Deploy the dashboard kubectl apply -f https://raw.githubusercontent.com/kubernetes/dashboard/v2.0.0-beta8/aio/deploy/recommended.yaml root@ip-172-31-43-76:~# kubectl get svc -n kubernetes-dashboard NAME                        TYPE        CLUSTER-IP     EXTERNAL-IP   PORT(S)         AGE dashboard-metrics-scraper   ClusterIP   10.102.6.123   <none>        8000/TCP        120m kubernetes-dashboard  ...

shell scripting and important linux questions and answers

 1.echo $0 what it means?     It will show the name of the currently running process Example: prepare test.sh #!/bin/bash echo $0 Then run test.sh after giving permission to chmod 700 test.sh root@ip-172-31-15-196:~# chmod 700 test.sh root@ip-172-31-15-196:~# ./test.sh ./test.sh 2.How to create 100 empty files at a time? touch file-{001..100} 3.What is hardlink and softlink and how it will be work and what is the difference between them? Hard link:  1.If we delete original file our data will be available 2.Inode number of both original file and hard link file both are same 3.Hard links are fast . Soft link: 1.If we delete original file our data will not be available 2.inode of original file and soft link file are different 3.Soft links are slower. 4.soft links can be used for linking directories 5.soft links will work across file systems. 6.File permissions are different. Creating sof link creating a file1.txt [root@ip-172-31-43-210 linux]# echo "ashwika tech" >...