Premium Employer

i

This company page is being actively managed by Infosys Team. If you also belong to the team, you can get access from here

Infosys Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Infosys AWS Devops Engineer Interview Questions, Process, and Tips

Updated 10 Oct 2024

Top Infosys AWS Devops Engineer Interview Questions and Answers

View all 6 questions

Infosys AWS Devops Engineer Interview Experiences

3 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to give access of s3 bucket to user in a secure way?
  • Ans. 

    Grant access to S3 bucket securely by using IAM policies and roles.

    • Create an IAM policy with specific permissions for the S3 bucket

    • Attach the IAM policy to an IAM role

    • Assign the IAM role to the user or group that needs access

    • Use bucket policies for more granular control if needed

  • Answered by AI
  • Q2. Difference between iam role and iam group?
  • Ans. 

    IAM role is used to grant permissions to entities, while IAM group is used to group users with similar permissions.

    • IAM role is used to delegate permissions to entities like EC2 instances or Lambda functions

    • IAM group is used to group users with similar permissions for easier management

    • IAM role can be assumed by trusted entities, while IAM group is used for managing user permissions

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is Kubernetes networking and how does it work
  • Ans. 

    Kubernetes networking is the way in which different pods and services communicate with each other within a Kubernetes cluster.

    • Kubernetes networking allows pods to communicate with each other across nodes in the cluster.

    • It uses a flat network model where each pod gets its own IP address.

    • Kubernetes networking can be implemented using various plugins like Calico, Flannel, or Cilium.

    • Network policies can be defined to contr...

  • Answered by AI
  • Q2. How does a pod communicate with other pods
  • Ans. 

    Pods communicate with other pods through network communication within the same Kubernetes cluster.

    • Pods can communicate with each other using services, which provide a stable endpoint for communication.

    • Pods can use DNS names to communicate with other pods within the same cluster.

    • Pods can also communicate directly using IP addresses within the cluster network.

    • Communication between pods can be secured using network polici...

  • Answered by AI
  • Q3. What is ingress controller and how it is used in kubernetes networking
  • Ans. 

    Ingress controller is a Kubernetes resource that manages external access to services within a cluster.

    • Ingress controller acts as a traffic manager, routing incoming traffic to the appropriate services based on rules defined in the Ingress resource.

    • It allows for the configuration of HTTP and HTTPS routing, load balancing, SSL termination, and more.

    • Popular Ingress controllers include Nginx Ingress Controller, Traefik, an...

  • Answered by AI
  • Q4. What is the difference between ingress and service
  • Ans. 

    Ingress controls the external access to services in a cluster, while service defines a set of pods and how they can be accessed.

    • Ingress manages external access to services in a cluster

    • Service defines a set of pods and how they can be accessed

    • Ingress can provide load balancing, SSL termination, and routing based on hostnames or paths

    • Service can be of type ClusterIP, NodePort, LoadBalancer, or ExternalName

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Infosys AWS Devops Engineer interview:
  • Kubernetes
Interview preparation tips for other job seekers - Requirement was a kubernetes project

Skills evaluated in this interview

AWS Devops Engineer Interview Questions Asked at Other Companies

Q1. how do you troubleshoot a docker container that is going to die?
Q2. If i delete an instance on the console and then i deploy the same ... read more
Q3. how do you take a backup of Linux logs to was S3 bucket?
asked in Saaspect
Q4. In how many ways we can create a role in aws?
asked in Vayana
Q5. What if I delete EC2 Machine from AWS Console and then apply Terr ... read more

I was interviewed in Sep 2019.

Interview Questionnaire 

3 Questions

  • Q1. 1. Network Architecture
  • Q2. Private Cloud, Autoscaling, AwsCodeDeploy
  • Q3. CI/CD pipeline

AWS Devops Engineer Jobs at Infosys

View all

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Interview questions on aws and DevOps
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Error that came across while pod creation
  • Ans. 

    Error encountered during pod creation can be due to various reasons such as incorrect configuration, resource constraints, network issues, or image availability.

    • Check the pod configuration file for any syntax errors or misconfigurations

    • Ensure that there are enough resources available on the cluster for pod creation

    • Verify network connectivity and DNS resolution within the cluster

    • Check if the container image specified in...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

How aws vs verulation.

Round 2 - Technical 

(2 Questions)

  • Q1. Nacl vs security group?
  • Ans. 

    Nacl is a stateless firewall while security group is a stateful firewall in AWS.

    • NACL operates at the subnet level, while security groups operate at the instance level.

    • NACL rules are evaluated in order, while security group rules are evaluated independently.

    • NACLs are stateless, meaning you must create rules for both inbound and outbound traffic, while security groups are stateful.

    • NACLs are more flexible in terms of allo...

  • Answered by AI
  • Q2. Aws cloudformation
Round 3 - HR 

(2 Questions)

  • Q1. Reason for change
  • Q2. Salary discuss how much excellent

Skills evaluated in this interview

I applied via Recruitment Consultant

Interview Questionnaire 

3 Questions

  • Q1. Work experience
  • Q2. Technical expertise
  • Q3. Best practices

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to be yourself. Only talk about things that you have actually worked. Don't bring in jargons to impress that might hurt instead of helping.

Talk more about your real life experiences and practice implemented

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About Kubernetes, Git, Jenkins, AWS.

Interview Preparation Tips

Interview preparation tips for other job seekers - Have clear understanding of all the tools
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. How lambda works?
  • Ans. 

    AWS Lambda is a serverless computing service that runs code in response to events and automatically manages the computing resources required.

    • Lambda functions are triggered by events such as changes to data in an S3 bucket, updates to a DynamoDB table, or HTTP requests via API Gateway.

    • Lambda functions can be written in languages like Node.js, Python, Java, and more.

    • AWS Lambda automatically scales to handle the incoming ...

  • Answered by AI
  • Q2. What is VPC? Explain in detail
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to your AWS account.

    • VPC allows you to create a logically isolated section of the AWS Cloud where you can launch AWS resources.

    • You can define your own IP address range, create subnets, configure route tables, and network gateways within a VPC.

    • VPC provides security by allowing you to control inbound and outbound traffic to and from your AWS resources.

    • You c...

  • Answered by AI
  • Q3. What is a pod in K8s?
  • Ans. 

    A pod in K8s is the smallest deployable unit in Kubernetes, consisting of one or more containers that share resources.

    • Pods are used to group containers that need to work together, such as a web server and a database.

    • Pods share the same network namespace and can communicate with each other using localhost.

    • Pods can be managed, scaled, and monitored as a single unit in Kubernetes.

    • Each pod has a unique IP address within th

  • Answered by AI
  • Q4. EC2 Autoscaling, Load balancing
  • Q5. What is terraform state file?
  • Ans. 

    Terraform state file is a file that stores the state of your infrastructure managed by Terraform.

    • It keeps track of the current state of your resources in the cloud.

    • Helps Terraform understand what has been created, modified, or deleted.

    • It is used to plan and apply changes to your infrastructure.

    • State file can be stored locally or remotely in a backend like AWS S3 or Terraform Cloud.

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. Day to day activity
  • Q2. If you know many things why do you want to go with only one?
  • Q3. Most difficult situation handled in project

Interview Preparation Tips

Topics to prepare for Capgemini AWS Devops Engineer interview:
  • AWS
  • Kubernetes
  • Terraform
Interview preparation tips for other job seekers - Go through basics of AWS and Kubernetes

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Reg Docker, Kubernettes, and AWS
Round 3 - HR 

(1 Question)

  • Q1. Experience and skills set

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep motivated and learn from your last interview. Always note down the questions that had been asked in the previous interview and keep it handy.
Contribute & help others!
anonymous
You can choose to be anonymous

Infosys Interview FAQs

How many rounds are there in Infosys AWS Devops Engineer interview?
Infosys interview process usually has 1 rounds. The most common rounds in the Infosys interview process are One-on-one Round and Technical.
How to prepare for Infosys AWS Devops Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Infosys. The most common topics and skills that interviewers at Infosys expect are AWS, Devops, AWS DevOps, Azure and DevOps.
What are the top questions asked in Infosys AWS Devops Engineer interview?

Some of the top questions asked at the Infosys AWS Devops Engineer interview -

  1. what is ingress controller and how it is used in kubernetes network...read more
  2. how to give access of s3 bucket to user in a secure w...read more
  3. what is Kubernetes networking and how does it w...read more

Recently Viewed

REVIEWS

Motilal Oswal Financial Services

No Reviews

JOBS

Paisabazaar.com

No Jobs

INTERVIEWS

Tata Power

No Interviews

INTERVIEWS

Company Interviews

No Interviews

SALARIES

Wells Fargo

JOBS

Adroit Synergies

No Jobs

SALARIES

Bajaj Finserv

INTERVIEWS

Wipro

No Interviews

JOBS

Unlimited Greens

No Jobs

SALARIES

Edelweiss

Tell us how to improve this page.

Infosys AWS Devops Engineer Interview Process

based on 2 interviews

Interview experience

2
  
Poor
View more
Join Infosys Creating the next opportunity for people, businesses & communities
Infosys AWS Devops Engineer Salary
based on 183 salaries
₹3 L/yr - ₹10.1 L/yr
15% less than the average AWS Devops Engineer Salary in India
View more details

Infosys AWS Devops Engineer Reviews and Ratings

based on 13 reviews

3.7/5

Rating in categories

4.2

Skill development

4.0

Work-life balance

3.2

Salary

3.9

Job security

4.1

Company culture

3.1

Promotions

4.0

Work satisfaction

Explore 13 Reviews and Ratings
Aws Devops Engineer-AB-Infosys

Hyderabad / Secunderabad,

Pune

+1

3-6 Yrs

Not Disclosed

Aws Devops Engineer-A

Hyderabad / Secunderabad,

Bangalore / Bengaluru

3-6 Yrs

₹ 3-8 LPA

Aws Devops Engineer

Bangalore / Bengaluru

10-20 Yrs

Not Disclosed

Explore more jobs
Technology Analyst
55.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Systems Engineer
50.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Engineer
39.6k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
30.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Consultant
28.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Infosys with

TCS

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview