Top 50 TeamCity interview questions and answers

1) Is TeamCity a CI or CD? TeamCity is a general-purpose CI/CD solution that allows the most flexibility for all sorts of workflows and development practices. The…

Read More

Top 50 Bamboo interview questions and answers

1) What exactly do you know about release planning? It is basically a common approach in Bamboo. It must be done at least once a week. There…

Read More

Top 50 H20 interview questions and answers

1) What is AutoML in H2O? H2O’s Automatic Machine Learning (AutoML) H2O is a fully open-source, distributed in-memory machine learning platform with linear scalability. … H2O AutoML…

Read More

Top 50 Packer interview questions and answers

Q. Is it possible to feed packer with an ansible encrypted file? I’m attempting to use packer from an ansible playbook in order to use an ansible-vault…

Read More

Top 50 interview questions and answers of logstash

About Logstash: Logstash is a lightweight, open-source, server-side data processing pipeline that allows you to collect data from a variety of sources, transform it on the fly,…

Read More

Top 50 Bitbucket Interview questions and answers

Q1. How use Bitbucket step by step? From Bitbucket, click the + icon in the global sidebar and select Repository. Bitbucket displays the Create a new repository…

Read More

What is Azure Key Vault?

Hello Learners, In this blog I have come up with the topic of Azure Key Vault for you. But before introducing Azure Key Vault, first of all,…

Read More

What is Azure Data Factory?

Friends, in this blog I’m going to explain to you about Azure Data Factory, It is a service allowing companies to transform their big data from rational,…

Read More

Example of Elastic Logstash pipeline input, filter and output

Rajesh KumarI’m a DevOps/SRE/DevSecOps/Cloud Expert passionate about sharing knowledge and experiences. I have worked at Cotocus. I share tech blog at DevOps School, travel stories at Holiday…

Read More

Copy a files from jenkins server to jenkins node/slave using pipeline plugins

Workarond 1 – Try to use stash/unstash, but it is bad for large files. [code]node(‘master’) {dir(‘/path/on/master/1’) {stash ‘master-stuff’}}node(‘slave’) {dir(‘/path/on/slave/1’) {unstash ‘master-stuff’}dir(‘/path/on/slave/2’) {stash ‘slave-stuff’}}node(‘master’) {dir(‘/path/on/master/2’) {unstash ‘slave-stuff’}} [/code]…

Read More