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 Projects Overview lets…

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 are certain features…

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 can be used…

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 encrypted file in…

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, and send it…

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 page. … For…

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, let me introduce…

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, non-rational to formulate…

Read more »

Example of Elastic Logstash pipeline input, filter and output

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 about…

Read more »