Upload Button Icon Add office photos

Filter interviews by

Dynamisch IT Devops Engineer Interview Questions, Process, and Tips

Updated 4 Oct 2023

Dynamisch IT Devops Engineer Interview Experiences

1 interview found

Devops Engineer Interview Questions & Answers

user image shreyas patil

posted on 4 Oct 2023

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

I applied via Hirist and was interviewed in Sep 2023. There were 2 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 tips
Round 2 - Technical 

(4 Questions)

  • Q1. What's is docker multistage? Explain What is terraform state file ? What happened if 2 user apply terraform at same time ? What will be best practices? Diff btwn stateless and state full What measures will...
  • Ans. 

    Docker multistage is a feature that allows you to build multiple Docker images in a single Dockerfile.

    • Docker multistage helps in reducing the size of the final image by using intermediate images for different stages of the build process.

    • It allows you to separate the build environment from the runtime environment, improving security and efficiency.

    • Each stage in a multistage build can be named and used to copy artifacts ...

  • Answered by AI
  • Q2. What will you do if 521 error occured?
  • Ans. 

    I would investigate the root cause of the 521 error and take appropriate actions to resolve it.

    • Check server logs for any relevant error messages

    • Verify network connectivity between client and server

    • Ensure server resources are not overloaded

    • Restart the server if necessary

    • Contact the service provider for further assistance

  • Answered by AI
  • Q3. Explain cicd pipeline ?
  • Ans. 

    CI/CD pipeline is a set of automated processes that allow developers to deliver code changes more frequently and reliably.

    • CI/CD stands for Continuous Integration/Continuous Delivery.

    • It involves automating the building, testing, and deployment of code changes.

    • CI/CD pipelines help in detecting and fixing errors early in the development process.

    • Popular tools for CI/CD pipelines include Jenkins, GitLab CI, and CircleCI.

  • Answered by AI
  • Q4. How to check recent last 50 logs of docker ?
  • Ans. 

    To check recent last 50 logs of docker, you can use the 'docker logs' command with the '--tail' option.

    • Use the command 'docker logs --tail 50 ' to display the last 50 logs of a specific Docker container.

    • If you want to follow the logs in real-time, you can use the '-f' flag along with the '--tail' option.

    • To view the logs of all containers, you can use the command 'docker ps -a' to get the list of container IDs and then

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via LinkedIn and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Package and joininv date
Round 2 - HR 

(1 Question)

  • Q1. Salary expected and location constraints

Interview Preparation Tips

Interview preparation tips for other job seekers - Study aws lambda, aws vpc, ansible, aws cloud , aws databases, cludformation, s3 amd aws ami

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

Interview Questionnaire 

1 Question

  • Q1. Terraform, CI/CD definition, Git basic, Pipeline mostly in integration side

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep focused on your basic

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 - 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. About your company and project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with devops , k8s and jenkins pipelines.
Be strong in gcp and AWS.

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Total 4 rounds excluding 1 assessment which is easy. 3 technical rounds and 1 HR round
  • Q2. Asked about Terraform, Docker, Kubernetes and Jenkins

Interview Preparation Tips

Interview preparation tips for other job seekers - For good results, kindly sharpen the basics of the tools used in the project.
Also, try to explain in a proper way how you contributed in present organization.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain kubernetes architecture
  • Ans. 

    Kubernetes architecture is a container orchestration platform that manages containerized applications across a cluster of nodes.

    • 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).

    • Pods are the smallest deployabl...

  • Answered by AI
  • Q2. Types of instances in AWS
  • Ans. 

    Types of instances in AWS include On-Demand Instances, Reserved Instances, and Spot Instances.

    • On-Demand Instances: Pay for compute capacity by the hour or second with no long-term commitments.

    • Reserved Instances: Reserve capacity for 1 or 3 years in exchange for a significant discount.

    • Spot Instances: Bid on unused EC2 capacity and potentially save up to 90% compared to On-Demand prices.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Hexaware Technologies Devops Engineer interview:
  • Kubernetes
  • AWS
  • prometheus
  • grafana
Interview preparation tips for other job seekers - prepare your skills what you wrote in resume that's it.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain CI/CD pipeline .
  • Ans. 

    CI/CD pipeline is a set of automated processes that allow developers to continuously integrate code changes and deploy them to production.

    • Continuous Integration (CI) involves automatically building and testing code changes as they are committed to a shared repository.

    • Continuous Deployment (CD) involves automatically deploying code changes to production environments after passing automated tests.

    • CI/CD pipelines typicall...

  • Answered by AI
  • Q2. Explain daemonset in kubernetes.
  • Ans. 

    DaemonSet ensures that all or some nodes run a copy of a Pod

    • DaemonSet is a Kubernetes resource that ensures a copy of a Pod is running on all or some nodes in the cluster

    • It is useful for running a single instance of a Pod on every node, such as log collection or monitoring agents

    • DaemonSet automatically adds or removes Pods as nodes are added or removed from the cluster

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain the networking services in AWS.
  • Ans. 

    AWS provides a variety of networking services to help users manage their network infrastructure.

    • Virtual Private Cloud (VPC) allows users to create isolated networks within the AWS cloud

    • Elastic Load Balancing distributes incoming traffic across multiple instances to ensure high availability

    • Route 53 is a scalable domain name system (DNS) web service

    • Direct Connect allows users to establish a dedicated network connection b...

  • Answered by AI
  • Q2. What is terraform module?
  • Ans. 

    Terraform module is a reusable, configurable, and self-contained collection of Terraform resources.

    • Terraform modules help organize and reuse code for infrastructure components

    • Modules can be shared and reused across different projects

    • Modules can have input variables to customize their behavior

    • Modules can output values that can be used by other parts of the infrastructure code

  • Answered by AI
Round 3 - Client Interview 

(2 Questions)

  • Q1. Why GitOps tool ?
  • Ans. 

    GitOps tools help automate infrastructure management, version control, and deployment processes.

    • Enables infrastructure as code practices

    • Facilitates version control for infrastructure configurations

    • Automates deployment processes

    • Promotes collaboration and visibility among team members

    • Examples: Argo CD, Flux, Jenkins X

  • Answered by AI
  • Q2. What is AWS secret manager?
  • Ans. 

    AWS Secret Manager is a service that helps you protect access to your applications, services, and IT resources.

    • It allows you to securely store, manage, and retrieve sensitive credentials and configuration data.

    • You can rotate, manage, and retrieve secrets throughout their lifecycle.

    • Integrates with AWS services like Lambda, EC2, RDS, and more for secure access to secrets.

    • Helps you meet security and compliance requirement...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - One-on-one 

(1 Question)

  • Q1. S3 storage class
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 tips
Round 2 - Aptitude Test 

Do basic aptitude and one coding question.

Round 3 - Technical 

(2 Questions)

  • Q1. Be patient. You'll definately crack if your basic of programming and oops are clear.
  • Q2. Questions specific to my final year project and code review.

Interview Preparation Tips

Interview preparation tips for other job seekers - Believe in yourself. My interviewer was very helpful and supportive.

Dynamisch IT Interview FAQs

How many rounds are there in Dynamisch IT Devops Engineer interview?
Dynamisch IT interview process usually has 2 rounds. The most common rounds in the Dynamisch IT interview process are Resume Shortlist and Technical.
What are the top questions asked in Dynamisch IT Devops Engineer interview?

Some of the top questions asked at the Dynamisch IT Devops Engineer interview -

  1. What's is docker multistage? Explain What is terraform state file ? What happen...read more
  2. How to check recent last 50 logs of docke...read more
  3. What will you do if 521 error occur...read more

Tell us how to improve this page.

Dynamisch IT Devops Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Dynamisch IT Devops Engineer Salary
based on 4 salaries
₹4.5 L/yr - ₹7 L/yr
38% less than the average Devops Engineer Salary in India
View more details
Software Engineer
44 salaries
unlock blur

₹2.4 L/yr - ₹12 L/yr

Salesforce Developer
14 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Software Developer
12 salaries
unlock blur

₹3.7 L/yr - ₹13.7 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹7.5 L/yr - ₹16.5 L/yr

Business Development Executive
8 salaries
unlock blur

₹2.6 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Dynamisch IT with

Cognizant

3.7
Compare

Sutherland Global Services

3.6
Compare

Optum Global Solutions

4.0
Compare

Hexaware Technologies

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