#100daysofdevops search results
Day 20 of My DevOps Journey Today I worked with tar files Copied an entire directory Compressed it into a .tar archive Also practiced creating a .tar.gz (zipped tar) file Learning how to package and back up files the Linux way 🔥 #DevOps #Linux #100DaysOfDevOps #TechJourney
🧩 #100DaysOfDevOps 7 days Recap From Linux basics to system services, here’s everything I explored in 7 days as I built from the ground up👇
Day 28/100 of #100DaysOfDevOps. Stop giving your CI pipeline `cluster-admin` rights. It's a huge security hole. Adopt GitOps (ArgoCD/Flux). 1. Git is your source of truth. 2. An in-cluster agent pulls changes. 3. All changes are via Pull Request.…
Days 95 - 100 🏁of #100daysofdevops 4/8 -> 15/11✔️ Finally Done with the challenge 🥳🎊 It's been really difficult to show up daily to finish tasks, but I did it (even if it's 5 days late🤫) The journey isn't over however, so stay tuned🤩⌛️ #devops @KodeKloudHQ
Days 89-91 ✅ of #100daysofdevops I haven't finished all the ansible tasks unfortunately, but the progress is good for how busy things are. I also am almost finished with the ansible tutorial I shared before. 9 more tasks to go 🥳 @KodeKloudHQ #ansible #automation #showyourwork
🔥 Day 12 of #100DaysOfDevOps 🔥 Wrote my first Bash script today 💻 Automated the full setup of an Apache web server — install, enable, deploy & clean up ⚙️🚀 Felt amazing seeing it run smooth 🔥 #DevOps #Bash #Automation #Linux #LearningInPublic
🚀 Starting my DevOps journey today. Honestly, I’ve always been a bit scared of it — felt too complex or “not for me.” 💀 But this time, I’m facing it head-on. I’ll be sharing my journey and learnings along the way. 🌱 #DevOps #LearningJourney #100DaysOfDevOps
Just want to know more about this Crypto words can make you lose interest But I don't mind slowing, I will get there 😌 Still on @rainbowdotme project... Watch me grow #100daysofdevops
Day 7 of #100DaysOfDevOps Today I learned about systemd, the manager that kicks in the moment your Linux system boots up. It’s responsible for starting all essential services and keeping things running smoothly.
Day 8 of #100DaysOfDevOps Today, I moved into Linux Networking Basics, understanding how a Linux system communicates on a network. Networking is a core part of DevOps because almost everything we deploy needs to talk to something else. 🧵👇
Day ☁️ of #100daysofdevops I couldn't get any "free tier" resources capable of running k8s so I'm running Minikube locally for my portfolio projects do you use free resources in your learning? if so which do you recommend?? #cloudcomputing #devops #sre
Day 2 #100DaysOfCode 🔺DSA C++ 🔸 Solved a good no.of problems on Patterns. Solving problems taking too much time than I imagined 🫠 #100DaysOfDevOps 🔺 Kunernetes 🔸YAML for Kunernetes 🔸Pods with YAML 🔸Replica Controllers 🔸Replica Sets
Day 9 of learning #DevOps 🚀 When we say Continuous Integration (CI), it’s about merging code regularly so automated tests can catch bugs early. Vote below ⬇️ #100DaysOfDevOps #LearningInPublic Now your turn 👇🏽
✦ Day 20 of #100DaysOfCode 💻 I finally began my DevOps journey — something I’ve wanted to start for a long time.🚀 📘 Covered so far: ✔ DevOps Basics & Lifecycle ✔ SDLC & Its Models ✔ Servers, Virtualization & VMs ✔ OS, Linux & Shell Commands #DevOps #100DaysOfDevOps
🚀 Day-1 of my DevOps Roadmap! Started with Linux Fundamentals 🐧 ✔ Terminal navigation ✔ File/Folder commands ✔ Permissions ✔ Ran my first shell script Key cmds: pwd ls -la cd mkdir cat chmod +x Next: Shell Scripting 🔥 #DevOps #Linux #100DaysOfDevOps
Day 6 #100DaysOfCode 🔺Java (OOPS) 🔸Object & Classes 🔸Constructors & Overloading 🔸Wrapper Classes 🔸Garbage Collection #100DaysOfDevOps My blog on Kubernetes is halfway through after sitting for more than 4 hours. Hopefully I'll publish it tomorrow🤞
🌟 DevOps Journey – Part 13 Dockerize a MERN Application 🐳 Learned how to: ✔ Write a Dockerfile ✔ Use Docker Compose to run multiple containers ✔ Containerize a full MERN stack app #DevOps #100DaysOfDevOps
Day 20 of My DevOps Journey Today I worked with tar files Copied an entire directory Compressed it into a .tar archive Also practiced creating a .tar.gz (zipped tar) file Learning how to package and back up files the Linux way 🔥 #DevOps #Linux #100DaysOfDevOps #TechJourney
Day 28/100 of #100DaysOfDevOps. Stop giving your CI pipeline `cluster-admin` rights. It's a huge security hole. Adopt GitOps (ArgoCD/Flux). 1. Git is your source of truth. 2. An in-cluster agent pulls changes. 3. All changes are via Pull Request.…
🚀 Day-1 of my DevOps Roadmap! Started with Linux Fundamentals 🐧 ✔ Terminal navigation ✔ File/Folder commands ✔ Permissions ✔ Ran my first shell script Key cmds: pwd ls -la cd mkdir cat chmod +x Next: Shell Scripting 🔥 #DevOps #Linux #100DaysOfDevOps
Day 27/100 of #100DaysOfDevOps. Helm is a necessary evil in Kubernetes. Good for: - Installing third-party charts (e.g., Prometheus). - Basic templating of your app YAML. Bad for: - Complex logic. `{{ if .Values... }}` gets ugly, fast. Use it wisely.…
Day 18 of #100DaysOfDevOps I was doing a networking lab today and intentionally broke DNS. 👀 Made me think: even big infrastructure players like Cloudflare aren’t immune; they had a major outage just this week. #DevOpsJourney #Networking
Day 17 of #100DaysOfDevOps Today I explored troubleshooting network connectivity in Linux. Turns out most issues follow a clear, logical path; once known, troubleshooting becomes predictable. 🛠️ #DevOpsJourney #LinuxNetworking
Day 26/100 of #100DaysOfDevOps. Stop using `kubectl run`. Stop using `kubectl create`. Define your desired state in a YAML file. Store that YAML in Git. Run kubectl apply -f your-file.yaml. This is the way. It's declarative,…
Day 25/100 of #100DaysOfDevOps. Opinion: Unless your company's product IS a Kubernetes distribution, you have no business building your own cluster. Use EKS, AKS, or GKE. Your team's time is better spent building features, not debugging etcd.…
Day 17 of #100DaysOfDevOps Today I explored troubleshooting network connectivity in Linux. Turns out most issues follow a clear, logical path; once known, troubleshooting becomes predictable. 🛠️ #DevOpsJourney #LinuxNetworking
Day 16 of #100DaysOfDevOps Today I learned how to control which network interface a service listens on. It’s like telling a web server or SSH, “serve only on this door, not all doors.” 🚪👇 #DevOpsJourney #LinuxNetworking #SysAdmin
Day 24/100 of #100DaysOfDevOps. To get started with Kubernetes, you have to understand its three core building blocks: 1. **Pod:** The smallest deployable unit. It's a wrapper around one or more containers that share a network and storage. 2.…
Day 16 of #100DaysOfDevOps Today I learned how to control which network interface a service listens on. It’s like telling a web server or SSH, “serve only on this door, not all doors.” 🚪👇 #DevOpsJourney #LinuxNetworking #SysAdmin
Day 15 of #100DaysOfDevOps Today I explored Linux firewalls, which control which traffic is allowed in and out of my server. It’s funny how just a few rules can completely secure a system. 🔒 #DevOpsJourney #Linux #Security
Day 23/100 of #100DaysOfDevOps. Kubernetes is not just a container runner. It's an API. A toolkit for building your own platform. If you're just using it to run pods, you're only scratching the surface of its power. #DevOpsUnlocked #Kubernetes…
Day 15 of #100DaysOfDevOps Today I explored Linux firewalls, which control which traffic is allowed in and out of my server. It’s funny how just a few rules can completely secure a system. 🔒 #DevOpsJourney #Linux #Security
Day 14 of #100DaysOfDevOps Today I focused on inspecting what’s happening on my system using tools like ss and netstat. Yesterday was about understanding ports; today was about actually seeing which services are listening and how they behave. #DevOpsFromScratch #DevOpsJourney
Day 22/100 of #100DaysOfDevOps. Your Docker images are too fat and insecure. Use multi-stage builds. - Stage 1: Build your code with a full SDK. - Stage 2: Copy ONLY the final binary into a minimal `alpine` or `distroless` image.…
Day 14 of #100DaysOfDevOps Today I focused on inspecting what’s happening on my system using tools like ss and netstat. Yesterday was about understanding ports; today was about actually seeing which services are listening and how they behave. #DevOpsFromScratch #DevOpsJourney
Day 13 of #100DaysOfDevOps Today I dived into ports, protocols, and how services actually listen for connections. It finally clicked that every service talks over a port, and tools like ss help you see exactly what's happening behind the scenes. #DevOpsJourney #LinuxNetwork
Day 21/100 of #100DaysOfDevOps. Containers solve one problem better than anything else: "It works on my machine." By packaging the app AND its dependencies together, you guarantee consistency from dev to prod. It's that simple. #DevOpsUnlocked #Docker…
Days 95 - 100 🏁of #100daysofdevops 4/8 -> 15/11✔️ Finally Done with the challenge 🥳🎊 It's been really difficult to show up daily to finish tasks, but I did it (even if it's 5 days late🤫) The journey isn't over however, so stay tuned🤩⌛️ #devops @KodeKloudHQ
Day 20/100 of #100DaysOfDevOps. That static `hosts.ini` file for your Ansible inventory is a liability. Switch to a dynamic inventory. Let Ansible query the AWS/Azure API directly to find your instances based on tags. Always-current inventory, zero manual work.…
Day 13 of #100DaysOfDevOps Today I dived into ports, protocols, and how services actually listen for connections. It finally clicked that every service talks over a port, and tools like ss help you see exactly what's happening behind the scenes. #DevOpsJourney #LinuxNetwork
Day 12 of #100DaysOfDevOps Today I worked on serving my own custom web page with nginx. 😎 I already had nginx running from yesterday’s project. #DevOpsJourney #DevOpsFromScratch #Linux
Day 19/100 of #100DaysOfDevOps. Terraform vs. Ansible is not a fight. They're partners. Terraform -> Provisions the servers. Ansible -> Configures the software on the servers. Use the right tool for the job. Don't overcomplicate it. #DevOpsUnlocked…
Day 12 of #100DaysOfDevOps Today I worked on serving my own custom web page with nginx. 😎 I already had nginx running from yesterday’s project. #DevOpsJourney #DevOpsFromScratch #Linux
Day 11 of #100DaysOfDevOps Today’s project was about managing a service with systemd. I installed and played around with nginx, starting, stopping, restarting, and checking logs. Felt good seeing those commands actually do something. 🧵👇 #DevOpsJourney #Linux #Nginx
Day 20 of My DevOps Journey Today I worked with tar files Copied an entire directory Compressed it into a .tar archive Also practiced creating a .tar.gz (zipped tar) file Learning how to package and back up files the Linux way 🔥 #DevOps #Linux #100DaysOfDevOps #TechJourney
🚀 Starting my DevOps journey today. Honestly, I’ve always been a bit scared of it — felt too complex or “not for me.” 💀 But this time, I’m facing it head-on. I’ll be sharing my journey and learnings along the way. 🌱 #DevOps #LearningJourney #100DaysOfDevOps
Day 9 of learning #DevOps 🚀 When we say Continuous Integration (CI), it’s about merging code regularly so automated tests can catch bugs early. Vote below ⬇️ #100DaysOfDevOps #LearningInPublic Now your turn 👇🏽
🔥 Day 12 of #100DaysOfDevOps 🔥 Wrote my first Bash script today 💻 Automated the full setup of an Apache web server — install, enable, deploy & clean up ⚙️🚀 Felt amazing seeing it run smooth 🔥 #DevOps #Bash #Automation #Linux #LearningInPublic
Day 🤔 of #100daysofDevOps 🌸 finally hosted this basic portfolio card after a few days of heart break & confusion 😭 #100DaysOfCode #GCP #terraform
Days 89-91 ✅ of #100daysofdevops I haven't finished all the ansible tasks unfortunately, but the progress is good for how busy things are. I also am almost finished with the ansible tutorial I shared before. 9 more tasks to go 🥳 @KodeKloudHQ #ansible #automation #showyourwork
🧩 #100DaysOfDevOps 7 days Recap From Linux basics to system services, here’s everything I explored in 7 days as I built from the ground up👇
✦ Day 20 of #100DaysOfCode 💻 I finally began my DevOps journey — something I’ve wanted to start for a long time.🚀 📘 Covered so far: ✔ DevOps Basics & Lifecycle ✔ SDLC & Its Models ✔ Servers, Virtualization & VMs ✔ OS, Linux & Shell Commands #DevOps #100DaysOfDevOps
Day 28 of #100daysofDevOps 🌸 - cleaned up my terraform setup: backend, outputs, IAM n stuff. Moving onto new stuff tmrw #100DaysOfCode #GCP #terraform
Day ☁️ of #100daysofdevops I couldn't get any "free tier" resources capable of running k8s so I'm running Minikube locally for my portfolio projects do you use free resources in your learning? if so which do you recommend?? #cloudcomputing #devops #sre
Day 8 of #100DaysOfDevOps Today, I moved into Linux Networking Basics, understanding how a Linux system communicates on a network. Networking is a core part of DevOps because almost everything we deploy needs to talk to something else. 🧵👇
🌟 DevOps Journey – Part 11 Continued exploring Docker 🐳 Topics covered: ✔ What is Docker ✔ Docker Lifecycle ✔ Docker terminologies ✔ Docker Images #DevOps #Docker #100DaysOfDevOps
Day 29 of #100daysofDevOps 🌸 - installed kubectl/minikube - practiced some basic cmds #100DaysOfCode #docker #k8s #Kubernetes #minikube
Days 95 - 100 🏁of #100daysofdevops 4/8 -> 15/11✔️ Finally Done with the challenge 🥳🎊 It's been really difficult to show up daily to finish tasks, but I did it (even if it's 5 days late🤫) The journey isn't over however, so stay tuned🤩⌛️ #devops @KodeKloudHQ
🌟 DevOps Journey – Part 13 Dockerize a MERN Application 🐳 Learned how to: ✔ Write a Dockerfile ✔ Use Docker Compose to run multiple containers ✔ Containerize a full MERN stack app #DevOps #100DaysOfDevOps
✦ Day 22 of #100DaysOfCode 💻 No new topics today 🙂 just revising everything I’ve learned so far in my DevOps journey. 🔁 #DevOps #100DaysOfDevOps #LearningJourney
Just want to know more about this Crypto words can make you lose interest But I don't mind slowing, I will get there 😌 Still on @rainbowdotme project... Watch me grow #100daysofdevops
✦ Day 28 of #100DaysOfCode 💻 Learned about Kubernetes today Covered: ✔ Containers vs Docker vs Kubernetes ✔ Why Kubernetes is needed ✔ Basic Kubernetes Architecture☸️ #DevOps #100DaysOfDevOps
Something went wrong.
Something went wrong.
United States Trends
- 1. GeForce Season 3,994 posts
- 2. Comey 186K posts
- 3. Everton 144K posts
- 4. St. John 8,533 posts
- 5. Mark Kelly 121K posts
- 6. Amorim 61.4K posts
- 7. Manchester United 83.9K posts
- 8. Iowa State 3,479 posts
- 9. #sjubb N/A
- 10. Seton Hall 2,346 posts
- 11. UCMJ 18K posts
- 12. Opus 4.5 9,127 posts
- 13. Pickford 11.3K posts
- 14. #LightningStrikes N/A
- 15. Benedict Arnold 3,868 posts
- 16. 49ers 19.4K posts
- 17. Genesis Mission 2,091 posts
- 18. Dealing 30.4K posts
- 19. Hegseth 48.1K posts
- 20. Halligan 56.5K posts