What is Flagger

What is Flagger and how that is used in cloud ?

Flagger works are controller of the deployment workflow and helps automating the promotion of canary deployments. It utilizes the Istio’s and Prometheus metrics for analyzing application behaviors.
What is Istio ?
Istio is an open source service mesh that allows you to connect, monitor, secure your microservices deployment on premises or in cloud or in Kubernetes orchestration platforms.
What is Prometheus?Prometheus tracks events and helps as an alerting software. 

What is docker daemon

What is Docker Daemon ?

In short, docker daemon acts as a server and exposes APIs to Docker client CLI and other third parties consumers. Altogether docker architectured as a client server based implementation.
Let’s also understand the basics about how docker works 
Docker is a platform which allows DevOps teams to package the applications and run in containers.
These docker containers talks directly to Operating system kernel to perform activities and keeps the applications and dependencies independently from machines. Docker container can even  run on Virtual machines as well. 
What is Kernel ?
Kernel is the core of any Operating system. Kernel has complete control on OS and connects hardware  and softwares.

What is Ansible roles

What is Ansible roles ?

Ansible roles are used to break the Ansible playbooks into multiple files. Usually an Ansible developer may have a tendency to write large single playbooks that adds complexity and that is when Ansible roles would come into real help.
Ansible molecules are used to create the ansible roles. 
How to install Ansible Molecule:pip install molecule 
How to verify the molecule version:$ molecule –version result : molecule, version 2.19.0
What is Ansible galaxy?
Ansible galaxy is site where the ansible developers collaborate to share ansible roles via installing roles, managing roles etc.
How to Initialize a role using Molecule ?Molecule could init a role. The init command can internally access Ansible galaxy. So molecule can generate a directory which has a directory with default as name. Inside that default directory,  test build and run can be performed using docker container.Molecule.yml will have all test scenarios like how to lint and test the roles and playbook.yml is used to test the roles.

How does DNS look up work for Kubernetes

How does DNS look up and DNS resolution work for Kubernetes?

What is DNS?
Think about olden time, we used to keep phone book to find contact numbers. DNS is like a phone book of IP address.
How Does DNS resolution work Generally?DNS resolution is the process converting domain name (e.g. shalimatech.com ) to computer friendly Ip number. Since this IP number is mapped to computer the requests go to that device and that’s when a request is sent to shalimatech.com the IP gets the resources back to the user.

How Does DNS resolution work in Kubernetes clusters?
DNS resolution is done vis Kubernetes’s CoreDNS. Once you refer resolve.conf then you would understand how kubelets configures this.

What is PSScriptAnalyzer used for

What is PSScriptAnalyzer used for ?

PSScriptAnalyzer is code quality scanner developed by Microsoft to scan powershell code. 

PSScriptAnalyzer can be installed using below command in Powershell ISE 

“Install-Module -Name PSScriptAnalyzer”
PSScriptAnalyzer cmndlet to unit test powershell code below:

“Invoke-ScriptAnalyzer -Path ‘path of targetted ps1 file to be scanned for code quality’

What is HtmlUnitDriver in Selenium

What is HtmlUnitDriver in Selenium ?

When I wanted to run my automation scripts on CI/CD pipeline back in 2017, I was experimenting the headless browsers using HtmlUnitDriver
Now Chrome headless picked up popularity over HtmlUnitDriver as switching from GUI browser selenium code to Chrome headless is very easy unlike HtmlUnitDriver.
Selenium automation utilized HtmlUnitDriver when it needs a non GUI mode executions on jenkins server when there is no browser installed on it or no support from docker containers.

What is PhantomJs used for

What is PhantomJs used for ?

When I wanted to run my automation scripts on CI/CD pipeline back in 2017, I was experimenting the headless browsers starting with PhantomJs.
Now Phantomjs is a discontinuoed headless browsers due to poor maintenance and support. 
Selenium automation utilized PhantomJs when it needs a non GUI mode executions on jenkins server when there is no browser installed on it or no support from docker containers.

How to deploy machine learning models

How to deploy machine learning models ?

Machine learning models can be developed using TensorFlow, and orchastrated using Kubernetes and build it in Docker container. These can be combined with AWS services like CloudWatch, EKS and S3. This can basically give an API for developers to deploy their machine learning models.

What is Tensorflow?

Tensorflow is an opensource library used for machine learning specifically artificial neural networks. It provides API for various machine learning tasks.
It is important to learn following terminology prior learning Tensorflow.
Artificial neural networks are inspired from Animal brains that learn from experiences. Similarly neural networks learns from examples to perform its tasks than running predefined programs.


What is Keras

High level neural networks API written in python which Tensorflow utilized for building its programs.


What is Dense

Dense is the neural network layer in the tensorflow 

how to build a team in the workplace

How to build a team in the workplace ?

It is good idea to build a team having members with good strategy for executing project. This member can be identified as leader

Then team needs a good analyst who needs to have skills to manage roadmap, backlog of work. This person can be called as Analyst.

And finally needs the developers (1 pr more depending on the work load and customer needs) who can deploy the code or bots.

What is the difference between Robotic Desktop Automation (RDA) vs Robotic Process Automation (RPA)

What is Robotic Desktop Automation (RDA) vs Robotic Process Automation (RPA) ?

For me RDA is automation of single desktop/user and RPA is automation of many desktops/uses.

Desktop automation is a robotic process automation which was a scaled down version of actual RPA for a single user. Robotic desktop automation is used for data scraping, Excel automation, file transfers, report generation, etc. An example, checking an apllication for a status on regular basis and to download reports or emailing a report to a distributed list of people.

However RPA installs on a server (not for single desktop eventhough that can also be done), cloud , or virtual machines. RPA processes can spread acrross departments or work flows.

For example, invoice generation needs to flow through multiples of tasks is a great candidate for RPA. It might start with retrieving an attachment from an email, then RPA needs to categorize it, uploading to an ERP systems, then find the right receiving person and send out email to that right approval person is a perfect candidate for RPA.