Posted On January 18, 2021

How to Become a DevOps Engineer in 2020

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How to Become a DevOps Engineer in 2020

This note is scribbled up with about 5-minute of time. Thus, it may not have much verbiage nor pertinent details. Eh…

One would need these skills:

  1. Platforms: AWS, Azure, Google Cloud
  2. Operating Systems: Linux (Debian, Ubuntu, Redhat), Windows
  3. Container Orchestration: Docker Swarm, Kubernettes
  4. Automation: Terraform (infrastructure), Ansible, Chef, Puppet (configuration management)
  5. Build Automation: Gitlab, Github Actions, TeamCity, Jenkins
  6. Monitoring: Nagios, Prometheus
  7. Database: PostgreSQL, MySQL, mondoDB
  8. Coding: Java, PHP, Tomcat, JavaScript, Node.js, Bash (Linux), Powershell (Windows), Python (OS independent), Yaml
  9. Web Engines: Nginx, Apache, Haproxy
  10. Soft skills: communication, judgement, focus, and teamwork

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

How to Setup Applications & Scanners to Use Office 365 Online Exchange to Send Emails

Intro: There are three (3) methods: (1) SMTP client authentication, (2) Direct Send, and (3)…

IT Security Compliance

To prepare an organization for compliance of Section 404 of COBIT (Control Objectives for Information…

PowerShell: Kill a Windows Service Forcefully

# killService.ps1 $serviceName='vmms' function killService($serviceName='Spooler',$restart=$false){ $processId=Get-WmiObject -Class Win32_Service -Filter "Name LIKE '$serviceName'"|Select-Object -ExpandProperty ProcessId if($processId.count…