Upload Button Icon Add office photos

Filter interviews by

National Career Service Devops Engineer Interview Questions, Process, and Tips for Experienced

Updated 3 Sep 2024

National Career Service Devops Engineer Interview Experiences for Experienced

1 interview found

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

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. What are the steps to deploy an application to kubernetes?
  • Ans. 

    Steps to deploy an application to Kubernetes

    • Create a Kubernetes deployment file with specifications for the application

    • Apply the deployment file using kubectl apply command

    • Monitor the deployment using kubectl get pods command

    • Expose the application using a Kubernetes service

    • Scale the application by adjusting the replica count in the deployment file

  • Answered by AI
  • Q2. What are modules in terraform?
  • Ans. 

    Modules in Terraform are reusable configurations that can be used to create multiple instances of resources.

    • Modules help in organizing and reusing Terraform configurations.

    • They allow for creating reusable components that can be shared across different projects.

    • Modules can be used to encapsulate related resources and configurations.

    • They promote code reusability and maintainability in Terraform scripts.

  • Answered by AI
  • Q3. Define stage in docker.
  • Ans. 

    A stage in Docker is a logical division in a Dockerfile where a specific set of instructions are executed and the resulting image is saved.

    • Stages help in breaking down complex build processes into smaller, manageable parts.

    • Each stage can have its own base image and set of instructions.

    • Stages can be used to optimize the build process by reusing intermediate images.

    • Stages are defined using the 'FROM' keyword in a Dockerf

  • Answered by AI
  • Q4. What is CrashLoopBackOff
  • Ans. 

    CrashLoopBackOff is an error state in Kubernetes when a container repeatedly crashes and fails to start.

    • CrashLoopBackOff occurs when a container in a Kubernetes pod crashes and Kubernetes tries to restart it, but it keeps failing.

    • This error is often caused by misconfigurations, resource constraints, or application bugs.

    • To troubleshoot CrashLoopBackOff, check the container logs, resource limits, and pod configuration.

    • Ex...

  • Answered by AI
  • Q5. What is NullResource in terraform.
  • Ans. 

    NullResource in Terraform is a resource that performs no actions when applied, but can be used to trigger provisioners or other side effects.

    • NullResource is a resource type in Terraform that allows you to run provisioners without creating any infrastructure.

    • It can be used to trigger actions like running scripts or commands on the local machine or remote servers.

    • NullResource is often used for tasks like running initiali...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Project details
  • Q2. Experience in each tool
  • Ans. 

    I have experience with a variety of tools commonly used in DevOps, including Jenkins, Docker, Kubernetes, Ansible, and Git.

    • Proficient in Jenkins for continuous integration and continuous deployment

    • Familiar with Docker for containerization of applications

    • Experience with Kubernetes for container orchestration

    • Skilled in Ansible for configuration management and automation

    • Proficient in Git for version control and collaborat

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. Gitlab Ci/Cd ,Aws ,linux xommands

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain previous project and used technology?
  • Q2. Most difficult or challenging and how you overcome it.

Interview Preparation Tips

Interview preparation tips for other job seekers - Had 2 rounds one technical and one HR. Technical interview was straight forward about my experience on projects and technologies.

I applied via Naukri.com and was interviewed before Jan 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic Exam about your knowledge.

Round 2 - Group Discussion 

We have to speak out properly and clear with our opinion.

Round 3 - Technical 

(1 Question)

  • Q1. Questions about some Technical and level of our confidence.
Round 4 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Tell me about yourself.
  • Q5. Why are you looking for a change?
  • Q6. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and feel free to attend the interview. Be confidence.

I applied via Job Portal and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly technical questions and they considered background profile too

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your experience and get deep knowledge before attending interview

I applied via Company Website and was interviewed in Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About the Technical Background

Interview Preparation Tips

Interview preparation tips for other job seekers - Never think that you will get a job within 1 week or 1 month. You need to stick until you get a job. as I gave around 20-30 interviews. So be confident and always learn from previous interviews.

I appeared for an interview before Apr 2021.

Round 1 - Video Call 

(5 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round with questions on Jenkins, Kubernetes, MYSQL etc.

  • Q1. What are the differences between declarative and scripted pipelines in Jenkins?
  • Ans. 

    Declarative pipelines focus on the desired state of the pipeline, while scripted pipelines allow for more flexibility and control.

    • Declarative pipelines use a more structured syntax and are recommended for simpler pipelines.

    • Scripted pipelines use Groovy script and allow for more complex logic and customization.

    • Declarative pipelines are easier to read and maintain, while scripted pipelines can be more powerful but harder...

  • Answered by AI
  • Q2. How does Jenkins know when to execute a scheduled job or pipeline, and how is it triggered?
  • Ans. 

    Jenkins triggers scheduled jobs or pipelines based on configured cron expressions or triggers from external events.

    • Jenkins uses cron expressions to schedule jobs at specific times or intervals.

    • Jobs can also be triggered manually or by external events like code commits to a repository.

    • Pipeline jobs can be triggered by changes in a Git repository, webhook notifications, or other external triggers.

  • Answered by AI
  • Q3. What are the differences between Ansible and Jenkins?
  • Ans. 

    Ansible is a configuration management tool, while Jenkins is a continuous integration and continuous deployment tool.

    • Ansible is used for configuration management and automation of tasks, while Jenkins is used for automating the build, test, and deployment processes.

    • Ansible uses YAML for configuration management, while Jenkins uses Groovy scripts for defining build pipelines.

    • Ansible is agentless, meaning it does not req...

  • Answered by AI
  • Q4. What is the difference between Kubernetes Deployments and Pods?
  • Ans. 

    Kubernetes Deployments manage multiple Pods and provide features like scaling, rolling updates, and rollback.

    • Deployments manage the lifecycle of Pods, ensuring a desired state is maintained.

    • Pods are the smallest deployable units in Kubernetes, representing a single instance of a running process.

    • Deployments allow for easy scaling of applications by creating or deleting Pods based on the defined configuration.

    • Deployments...

  • Answered by AI
  • Q5. What are the differences between Ingress and Load Balancer in Kubernetes?
  • Ans. 

    Ingress is a layer 7 HTTP routing mechanism while Load Balancer is a layer 4 TCP/UDP load balancer in Kubernetes.

    • Ingress is used to expose HTTP and HTTPS routes to services inside the cluster, while Load Balancer is used to distribute traffic across multiple nodes.

    • Ingress provides features like SSL termination, path-based routing, and name-based virtual hosting, while Load Balancer focuses on distributing traffic based...

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions on AWS Services, Docker, Microservices etc.

  • Q1. What are the differences between Amazon ECS and Amazon EKS?
  • Ans. 

    Amazon ECS is a container management service while Amazon EKS is a managed Kubernetes service.

    • Amazon ECS is a fully managed container orchestration service, while Amazon EKS is a managed Kubernetes service.

    • Amazon ECS is more tightly integrated with other AWS services like CloudWatch, IAM, and VPC, while Amazon EKS is more flexible and can run on any cloud provider.

    • Amazon ECS uses its own proprietary orchestration engin...

  • Answered by AI
  • Q2. What are the use cases of running Docker inside Docker?
  • Ans. 

    Running Docker inside Docker is useful for testing, CI/CD pipelines, and isolating environments.

    • Testing different Docker configurations

    • Running CI/CD pipelines within containers

    • Isolating development environments

    • Building and testing Docker images within containers

  • Answered by AI
  • Q3. What is the difference between monolithic and microservices architecture?
  • Ans. 

    Monolithic architecture is a single, unified system while microservices architecture is a collection of small, independent services.

    • Monolithic architecture is a single, indivisible unit where all components are tightly coupled.

    • Microservices architecture breaks down the application into smaller, loosely coupled services that communicate through APIs.

    • Monolithic architecture can be harder to scale and maintain compared to...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASourceFuse Technologies interview preparation:Topics to prepare for the interview - AWS Services, Kubernetes, Jenkins, SQL, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : You'll be selected only and if you're really very technically sound and have working experience in Production environment. You can't fool interviewer.
Tip 2 : Must do Previously asked Interview as well as Online Test Questions.
Tip 3 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Feb 2020. There were 5 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Various AWS Services (EKS, DMS, RDS, API-GATEWAY, EC2 [ALB, ELB, ENI, TG, ASG], Route53, VPC), IAM, Scenario based questions.
  • Q2. In depth Kubernetes [Pod Template vs Deployment manifest, Ingress vs Loadbalancer vs ClusterIP vs NodePort]
  • Q3. Docker inside docker, Micro-service architecture vs Monolithic architecture, EKS vs ECS vs Fargate, Seceario based question [ How to use a single loadbalancer for multiple services in an EKS Cluster ]
  • Q4. Jenkins Job [ Declarative pipeline vs Scripted Pipeline ], Jenkins of Kubernetes, Jenkins Job backup, Jenkins server DR
  • Q5. MySQL-Aurora vs MySQL, Ansible vs Jenkins
  • Ans. 

    MySQL-Aurora is a managed service while MySQL requires manual management. Ansible and Jenkins are both automation tools.

    • MySQL-Aurora is a managed service provided by AWS, while MySQL requires manual management.

    • MySQL-Aurora is more scalable and fault-tolerant than MySQL.

    • Ansible is a configuration management tool that automates the deployment and management of software.

    • Jenkins is a continuous integration and continuous d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You'll be selected only and If you're really very technically sound and have working experience in Production environment. You can't fool interviewer.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Profile discussion, interview based on job description.
Round 2 - Technical 

(1 Question)

  • Q1. VMware, SRM, replication, virtualuzation

Interview Preparation Tips

Interview preparation tips for other job seekers - Good working. Interview was normal not much tough. Since those tools were new at the time of interview in 2014.

National Career Service Interview FAQs

How many rounds are there in National Career Service Devops Engineer interview for experienced candidates?
National Career Service interview process for experienced candidates usually has 1 rounds. The most common rounds in the National Career Service interview process for experienced candidates are Technical.
What are the top questions asked in National Career Service Devops Engineer interview for experienced candidates?

Some of the top questions asked at the National Career Service Devops Engineer interview for experienced candidates -

  1. What are the steps to deploy an application to kubernet...read more
  2. What is NullResource in terrafo...read more
  3. What are modules in terrafo...read more

Tell us how to improve this page.

National Career Service Devops Engineer Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more
National Career Service Devops Engineer Salary
based on 5 salaries
₹2 L/yr - ₹5 L/yr
62% less than the average Devops Engineer Salary in India
View more details
Software Engineer
95 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Software Developer
35 salaries
unlock blur

₹3 L/yr - ₹6.8 L/yr

Business System Analyst
11 salaries
unlock blur

₹8 L/yr - ₹17 L/yr

Full Stack Developer
9 salaries
unlock blur

₹1 L/yr - ₹4.8 L/yr

Java Developer
9 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Explore more salaries
Compare National Career Service with

Government of India

4.2
Compare

National Informatics Centre

3.9
Compare

Csc E Governance Services

3.9
Compare

Central Reserve Police Force

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