Upload Button Icon Add office photos

Filter interviews by

Capgemini Engineering Devops Engineer Interview Questions, Process, and Tips

Updated 1 Oct 2024

Top Capgemini Engineering Devops Engineer Interview Questions and Answers

Capgemini Engineering Devops Engineer Interview Experiences

3 interviews found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. K8$ network questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview before Oct 2023.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain about Kubernetes architecture
  • Ans. 

    Kubernetes is an open-source container orchestration platform that automates the deployment, scaling, and management of containerized applications.

    • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker node components include kubelet, kube-proxy, and container runtime (e.g. Docker).

    • Kubernetes u...

  • Answered by AI
  • Q2. What is RBAC and how to control users?
  • Ans. 

    RBAC stands for Role-Based Access Control, a method of restricting network access based on roles assigned to individual users.

    • RBAC assigns roles to users based on their job responsibilities

    • Access control is managed through policies that define what actions each role can perform

    • RBAC simplifies user management by grouping users with similar access needs

  • Answered by AI
  • Q3. What is docker network?
  • Ans. 

    Docker network is a virtual network that allows containers to communicate with each other and with external networks.

    • Docker network enables communication between containers running on the same host or across different hosts.

    • It provides isolation and security for containers by creating separate network namespaces.

    • Users can create custom networks with specific configurations such as bridge, overlay, and macvlan.

    • Docker ne...

  • Answered by AI
  • Q4. Write Kubernetes service?
  • Ans. 

    A Kubernetes service is an abstraction that defines a logical set of Pods and a policy by which to access them.

    • Services allow communication between different parts of an application or between different applications.

    • Services can be exposed internally within the cluster or externally to the internet.

    • Types of services include ClusterIP, NodePort, LoadBalancer, and ExternalName.

    • Services can be created using YAML manifests

  • Answered by AI
  • Q5. Write Jenkins declarative scripting?
  • Ans. 

    Jenkins declarative scripting is a way to define pipelines using a simplified syntax.

    • Use 'pipeline' block to define the entire pipeline

    • Use 'stages' block to define different stages of the pipeline

    • Use 'steps' block within stages to define individual steps

    • Use 'agent' block to specify where the pipeline will run

    • Use 'post' block to define actions to be taken after the pipeline has completed

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn one tool specifically

Skills evaluated in this interview

Devops Engineer Interview Questions Asked at Other Companies

Q1. Reverse the String Problem Statement You are given a string STR w ... read more
asked in Lentra AI
Q2. if you want to connect multiple vpc ,we have 2 or 3 vpc, you have ... read more
asked in Siemens
Q3. How to run a docker command remotely. i.e. Docker is installed on ... read more
asked in Nagarro
Q4. Guess The Hidden Number Problem Statement You are given an intege ... read more
Q5. Docker command to transfer an image from one machine to another w ... read more

Devops Engineer Interview Questions & Answers

user image Debabrat Das

posted on 11 May 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About ci cd pipeline setup
  • Q2. Scripting knowledge
Round 2 - Technical 

(2 Questions)

  • Q1. More on jenkins
  • Q2. Shell scripting

Interview Preparation Tips

Topics to prepare for Capgemini Engineering Devops Engineer interview:
  • Devops
  • Docker
  • Kubernetes
  • Jenkins
  • Shell Scripting
  • Python
  • Ansible
  • Terraform
Interview preparation tips for other job seekers - It depends on the project/client requirement. They generally hire for devops when they have a specific requirement, so it happens more with the client. As per the JD, prepare well according to current trends iof devops with tools like jenkins, terraform, ansible, docker, kubernetes, python+ shell. Questions asked by Capgemini resources are pretty basic but client rounds can be in depth.

Devops Engineer Jobs at Capgemini Engineering

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Create program is bash to complete a specific task

Round 2 - One-on-one 

(1 Question)

  • Q1. How do you handle confilct
  • Ans. 

    I handle conflicts by actively listening, seeking common ground, and finding mutually beneficial solutions.

    • Practice active listening to understand all perspectives

    • Seek common ground and areas of agreement

    • Collaborate with others to find mutually beneficial solutions

    • Stay calm and composed during conflicts

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. About Aws architecture
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is node affinity?
  • Ans. 

    Node affinity is a feature in Kubernetes that allows pods to be scheduled onto nodes based on labels assigned to nodes.

    • Node affinity is used to ensure that pods are scheduled onto nodes that meet certain criteria specified in the pod's affinity rules.

    • There are two types of node affinity: requiredDuringSchedulingIgnoredDuringExecution and preferredDuringSchedulingIgnoredDuringExecution.

    • Node affinity rules can be based o...

  • Answered by AI
  • Q2. What is security groups?
  • Ans. 

    Security groups are virtual firewalls that control inbound and outbound traffic for instances in a cloud network.

    • Security groups are used to control traffic at the instance level.

    • They act as virtual firewalls for instances in a cloud network.

    • They allow you to specify which traffic is allowed to reach your instances.

    • You can define rules for inbound and outbound traffic based on protocols, ports, and IP addresses.

    • Securit...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Questions on Docker
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. They asked me to write a dockerfile
  • Q2. Minimal questions about linux

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on linux and k8s

I applied via Referral and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How to check kubernetes resources
  • Ans. 

    To check kubernetes resources, use kubectl command-line tool.

    • Use 'kubectl get' command to list resources

    • Use 'kubectl describe' command to get detailed information about a resource

    • Use 'kubectl logs' command to view logs of a container

    • Use 'kubectl exec' command to execute a command in a container

    • Use 'kubectl apply' command to apply changes to a resource

    • Use 'kubectl delete' command to delete a resource

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is the current CTC

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviews are relaxed . It's the wait to get project is the torture

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Share about your projects
Round 2 - One-on-one 

(1 Question)

  • Q1. How good you're in tech stacks
Round 3 - HR 

(1 Question)

  • Q1. Salary & work allocation

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your skills & ready to learn

Capgemini Engineering Interview FAQs

How many rounds are there in Capgemini Engineering Devops Engineer interview?
Capgemini Engineering interview process usually has 1-2 rounds. The most common rounds in the Capgemini Engineering interview process are Technical and One-on-one Round.
How to prepare for Capgemini Engineering 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 Capgemini Engineering. The most common topics and skills that interviewers at Capgemini Engineering expect are AWS, SQL, Shell Scripting, Azure Infrastructure and DevOps.
What are the top questions asked in Capgemini Engineering Devops Engineer interview?

Some of the top questions asked at the Capgemini Engineering Devops Engineer interview -

  1. what is RBAC and how to control use...read more
  2. what is docker netwo...read more
  3. write Jenkins declarative scripti...read more

Tell us how to improve this page.

Capgemini Engineering Devops Engineer Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more
Capgemini Engineering Devops Engineer Salary
based on 78 salaries
₹4.4 L/yr - ₹15 L/yr
9% more than the average Devops Engineer Salary in India
View more details

Capgemini Engineering Devops Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

2.0

Skill development

1.0

Work-life balance

2.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
2k salaries
unlock blur

₹5.5 L/yr - ₹20.8 L/yr

Technical Lead
1.4k salaries
unlock blur

₹7.6 L/yr - ₹26 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3.5 L/yr - ₹11.9 L/yr

Network Engineer
405 salaries
unlock blur

₹4 L/yr - ₹13.3 L/yr

Senior Technical Lead
365 salaries
unlock blur

₹14.1 L/yr - ₹35 L/yr

Explore more salaries
Compare Capgemini Engineering with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

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