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 set VNC shortcut to run as another user

In order to make the VNC program run as another user you can do either…

How To Turn On Windows SMB File Share Access Auditing

Step 1: Turn on File Editing Here is how to check for effective local group…

PowerShell: How To Make A System App Do Nothing

# How-To-Make-Existing-System-App-Do-Nothing.ps1# Provide variables$hive="REGISTRY::HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\WORDPAD.EXE"$key="(default)"$value="C:\Windows\dummy.exe"$defaultValue="C:\Program Files\Windows NT\Accessories\WORDPAD.EXE"# Dummy-File-Creator.ps1$dummyFile="C:\Windows\dummy.exe"$output = new-object byte[] 1; (new-object Random).NextBytes($output);[IO.File]::WriteAllBytes($dummyFile, $output);if…