4 comments on “Kubernetes horizontal POD Autoscaling – Hello World”

Kubernetes horizontal POD Autoscaling – Hello World

For a quick test of horizontal autoscaling of an NginX deployment, we need the following ingredients: a metrics server installation to be able to measure the POD's CPU an nginx deployment with a CPU reservation an auto scaler configuration a…

1 comment on “Metricbeat on Kubernetes – Kubernetes Series (11)”

Metricbeat on Kubernetes – Kubernetes Series (11)

Three ways of installing Metricbeat (a performance monitoring solution) on Kubernetes are compared: native vs. helm with set options vs helm with values options. Metricbeat helps us monitoring performance indicators like CPU, Memory, Disk and many more on your Kubernetes nodes. We will show that (and why) installing Metricbeat via helm based on values file is the quickest way of installing Metricbeat. You just need to copy the Metricbeat chart's values file, adapt it to your needs and run a helm command in order to roll out the Metricbeat agent to all nodes of your Kubernetes cluster.

2 comments on “Mesos and Marathon REST API via cURL — A Hello World Example”

Mesos and Marathon REST API via cURL — A Hello World Example

In this hello-world style blog post, we will learn how to create load balanced Docker services in an open source DC/OS & Mesos environment. For that, we will perform Mesos and Marathon REST API calls using simple cURL commands. First, we will…

0 comments on “Vagrant on CentOS 7 – Setting up Test Environments the easy Way”

Vagrant on CentOS 7 – Setting up Test Environments the easy Way

After stumbling upon several guides still describing a Vagrant installation via a RubyGem - which is no longer supported - the following article was created and will provide a quick setup guide on how to setup Vagrant on CentOS 7.…

2 comments on “Jenkins (6): BrowserStack Integration – Automated Cross Browser Testing”

Jenkins (6): BrowserStack Integration – Automated Cross Browser Testing

With the BrowserStack cloud-based solution, there is no need to buy many different hardware types for testing your website for many different mobile devices and operating systems. In this blog post about Jenkins BrowserStack Integration, we will learn how to integrate BrowserStack-based automated…

1 comment on “Testing any Browser on any Hardware using BrowserStack – A Protractor Cross Browser Testing Example”

Testing any Browser on any Hardware using BrowserStack – A Protractor Cross Browser Testing Example

This time we will learn how to test any web site (including your front end software) using many different Internet browsers by integrating a cloud-based cross browser test solution named BrowserStack. We will perform Protractor tests for AngularJS using the…

0 comments on “Jenkins Part 5.1: Using the Job DSL for automatic Creation of Jenkins Jobs”

Jenkins Part 5.1: Using the Job DSL for automatic Creation of Jenkins Jobs

Today, we will learn how to use the Jenkins Job DSL Plugin to create new Jenkins jobs at a push of a button. We will show how we can use Groovy scripts for defining a "Hello World" Jenkins freestyle project and…

2 comments on “Jenkins Part 4.2: Code Quality Tests via Checkstyle”

Jenkins Part 4.2: Code Quality Tests via Checkstyle

Today, we will show how to use Checkstyle for improving the style of Java code. First, we will add Checkstyle to Gradle in order to create XML reports for a single build. Jenkins allows us to visualize the results of more…

3 comments on “Jenkins Part 4.1: Functional Java Tests via JUnit”

Jenkins Part 4.1: Functional Java Tests via JUnit

You also think that functional tests are one of the most important ingredients for delivering high quality software? You share my opinion that we should help the developer automating this task in order to get comparable results and to receive meaningful trend reports? I…

7 comments on “Jenkins Part 3.1: periodic vs triggered Builds”

Jenkins Part 3.1: periodic vs triggered Builds

Today, we will make sure that Jenkins will detect a code change in the software repository without manual intervention. We will show two methods to do so: Periodic Builds via Schedulers: Jenkins periodically asks the software repository for any code changes…

54 comments on “Getting Started with Mesos Resource Reservation & Marathon Watchdog – A „Hello World“ Example”

Getting Started with Mesos Resource Reservation & Marathon Watchdog – A „Hello World“ Example

Today, we will introduce Apache Mesos, an open source distributed computing system with the target to allow applications to run on a computer cluster as if it was running on a single computer. On top of a Mesos cluster, we…

5 comments on “Jenkins Part 2: automated Code Download and Build (Gradle + Maven)”

Jenkins Part 2: automated Code Download and Build (Gradle + Maven)

NEW (2017-01-02): you now can immediately start with part 2 (this post) without going through the steps of part 1. A corresponding pre-installed Docker image is provided. NEW (2017-01-05): I have added the Maven build path with a fat executable…

10 comments on “Jenkins Part 1: Installation the Docker Way”

Jenkins Part 1: Installation the Docker Way

In this blog post, we will deploy and get started with Jenkins, the most popular open source tool for Continuous Integration and Continuous Deployment. As a modern way of installing, we install a Docker host and deploy a Jenkins Docker…

3 comments on “Kibana „Hello World“ Example – Part 3 of the ELK Stack Series”

Kibana „Hello World“ Example – Part 3 of the ELK Stack Series

Today, we will introduce Kibana, a data visualization open source tool. As part of Elastic's ELK stack (now called Elastic stack), Kibana is often used to visualize logging statistics and for management of the Elastic Stack. However, in this Tutorial, we…

36 comments on “Elasticsearch „Hello World“ Example – Part 2 of the ELK Stack Series”

Elasticsearch „Hello World“ Example – Part 2 of the ELK Stack Series

In the last blog post, we have explored Logstash, a tool for collecting and transform log data from many different input sources. Today, we will explore Elasticsearch, a scheme-less noSQL database with a versatile ("elastic") search engine. We will perform…

39 comments on “Logstash „Hello World“ Example – Part 1 of the ELK Stack Series”

Logstash „Hello World“ Example – Part 1 of the ELK Stack Series

Today, we will first introduce Logstash, an open source project created by Elastic, before we perform a little Logstash "Hello World": we will show how to read data from command line or from file, transform the data and send it back to…