What should I learn before starting my first DevOps internship in 15 days?

0
2
Asked By MellowHarbor27 On

I recently received an internship as a DevOps intern at a company in Pune, and I'm due to start in about 15 days. I'm essentially a beginner and feel that my college background didn't give me enough practical experience. I studied computer science, with coursework in cloud computing and DevOps, but I'm currently unsure where to begin. What topics or hands-on exercises should I prioritize so I can feel more prepared when the internship starts?

3 Answers

Answered By SilverKite61 On

Try to learn by doing rather than trying to memorize the entire DevOps field. Set up a Linux environment, write a few shell commands or scripts, use Git branches and pull requests, build and run a Docker container, and deliberately break and fix a simple pipeline. Those exercises will give you useful context when your team introduces its own tools and processes.

Answered By QuietMaple8 On

With only 15 days, prioritize the fundamentals you’re most likely to use immediately: Linux commands and permissions, navigating files, processes and services, SSH, Git, Docker basics, and reading CI/CD logs. Also learn enough YAML to understand a pipeline configuration. You don’t need to master every cloud service before your first day; aim to be comfortable troubleshooting and learning from documentation.

Answered By CloudyBadger42 On

Since you already have the internship, focus less on watching tutorials and more on completing one small project from start to finish. Build a simple web app in Python or another language you know, containerize it with Docker, and put the code in a Git repository. Then create a basic CI workflow that builds the Docker image whenever you push changes. Finally, deploy it to the cloud provider your company uses, using a virtual network and a small virtual machine. Install Docker there and run your application. If you finish early, try adding Nginx or learning about load balancers, but one complete project is more valuable than many unfinished tutorials.

MellowHarbor27 -

This is my first internship, and although I studied computer science with minors in cloud computing and DevOps, I didn’t get much useful practical experience. I’ve felt pretty lost, so I really appreciate the advice and the time you took to explain it.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.