reactioncommerce/prometheus-operator

Name: prometheus-operator

Owner: Reaction Commerce

Description: Prometheus Operator creates/configures/manages Prometheus clusters atop Kubernetes

Forked from: coreos/prometheus-operator

Created: 2017-12-11 23:28:23.0

Updated: 2017-12-11 23:28:25.0

Pushed: 2017-12-11 17:23:20.0

Homepage: https://coreos.com/operators/prometheus

Size: 13974

Language: Go

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Prometheus Operator

Build Status Go Report Card

Project status: beta Not all planned features are completed. The API, spec, status and other user facing objects may change, but in a backward compatible way.

The Prometheus Operator for Kubernetes provides easy monitoring definitions for Kubernetes services and deployment and management of Prometheus instances.

Once installed, the Prometheus Operator provides the following features:

For an introduction to the Prometheus Operator, see the initial blog post.

Documentation is hosted on coreos.com

The current project roadmap can be found here.

Prometheus Operator vs. kube-prometheus

The Prometheus Operator makes the Prometheus configuration Kubernetes native and manages and operates Prometheus and Alertmanager clusters. It is a piece of the puzzle regarding full end-to-end monitoring.

kube-prometheus combines the Prometheus Operator with a collection of manifests to help getting started with monitoring Kubernetes itself and applications running on top of it.

Prerequisites

Version >=0.2.0 of the Prometheus Operator requires a Kubernetes cluster of version >=1.5.0. If you are just starting out with the Prometheus Operator, it is highly recommended to use the latest version.

If you have previously used pre-1.5.0 releases of Kubernetes with the 0.1.0 version of the Prometheus Operator, see the migration section.

Migration

The PetSet was deprecated in the 1.5.0 release of Kubernetes in favor of the StatefulSet. As the Prometheus Operator used the PetSet in version 0.1.0, those need to be migrated as we upgrade our Kubernetes cluster as well as the Prometheus Operator.

First the Prometheus Operator needs to be shut down. Once shut down, retrieve the PetSets that were generated by it. You can do so simply by finding all Prometheus and Alertmanager objects created:

ctl get prometheuses --all-namespaces
ctl get alertmanagers --all-namespaces

For each Prometheus and Alertmanager object, a respective PetSet with the same name was created in the same namespace. Those PetSets need to be migrated according to the official migration documentation.

Once migrated and on Kubernetes version >=1.5.0, you can start the Prometheus Operator of version >=0.2.0, and the StatefulSet created in the migration will from now on be managed by the Prometheus Operator.

CustomResourceDefinitions

The Operator acts on the following custom resource definitions (CRDs):

To learn more about the CRDs introduced by the Prometheus Operator have a look at the design doc.

Installation

Install the Operator inside a cluster by running the following command:

ctl apply -f bundle.yaml

Note: make sure to adapt the namespace in the ClusterRoleBinding if deploying in another namespace than the default namespace.

To run the Operator outside of a cluster:


/run-external.sh <kubectl cluster name>
Removal

To remove the operator and Prometheus, first delete any custom resources you created in each namespace. The operator will automatically shut down and remove Prometheus and Alertmanager pods, and associated configmaps.

n in $(kubectl get namespaces -o jsonpath={..metadata.name}); do
bectl delete --all --namespace=$n prometheus,servicemonitor,alertmanager

After a couple of minutes you can go ahead and remove the operator itself.

ctl delete -f bundle.yaml

The operator automatically creates services in each namespace where you created a Prometheus or Alertmanager resources, and defines three custom resource definitions. You can clean these up now.

n in $(kubectl get namespaces -o jsonpath={..metadata.name}); do
bectl delete --ignore-not-found --namespace=$n service prometheus-operated alertmanager-operated


ctl delete --ignore-not-found customresourcedefinitions \
ometheus.monitoring.coreos.com \
rvice-monitor.monitoring.coreos.com \
ertmanager.monitoring.coreos.com
Development
Prerequisites
Testing
  1. Ensure that you're running tests in the following path: $GOPATH/src/github.com/coreos/prometheus-operator as tests expect paths to match.
  2. If you're working from a fork, just add the forked repo as a remote and pull against your local coreos checkout before running tests.
  3. make test executes all unit tests.
  4. You can execute the e2e tests on a local minikube by compiling the static binary (which is what is used for the container images) with make crossbuild.
  5. build the container image with the docker host from within minikube by running eval $(minikube docker-env).
  6. You can build the container using make container.
  7. Finally run the e2e tests using make e2e-test.

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.