A management framework for extending Kubernetes with Operators
Clone or download
openshift-merge-robot Merge pull request #525 from njhale/refresh-certs
feat(csv): add cert rotation for owned APIServices
Latest commit d7ee481 Oct 29, 2018
Permalink
Failed to load latest commit information.
.gitlab-ci fix(ci): cleanup packagemanifest APIService during deploy stop job Oct 25, 2018
Documentation Merge pull request #528 from aditya-konarde/patch-1 Oct 19, 2018
cmd fix(requirements): remove extra empty permission requirement statuses Oct 11, 2018
deploy feat(csv): add generated APIService resource check Oct 25, 2018
manifests chore(release): cut release 0.7.4 Oct 19, 2018
pkg feat(listers): add and use aggregate informer lister Oct 29, 2018
scripts chore(test): bump minikube kube version to 1.12.0 Oct 25, 2018
test feat(listers): add and use aggregate informer lister Oct 29, 2018
vendor emit events when setting CSV phase Oct 22, 2018
.gitignore fix(vendor): revendor dependencies Sep 13, 2018
.gitlab-ci.jsonnet chore(deploy): update release scripts to not use 3 different images Oct 11, 2018
.gitlab-ci.yml fix(ci): cleanup packagemanifest APIService during deploy stop job Oct 25, 2018
DEVELOPMENT.md feat(makefile): allow running a single e2e test from the make command Aug 2, 2018
Dockerfile fix(e2e): switch to port 5443 for owned apiservice test Oct 18, 2018
Gopkg.lock emit events when setting CSV phase Oct 22, 2018
Gopkg.toml chore(dep): constrain k8s.io/kubernetes to the release-1.11 branch Sep 26, 2018
LICENSE add Apache 2.0 License Mar 12, 2018
Makefile chore(release): cut release 0.7.4 Oct 19, 2018
OLM_VERSION chore(release): bump version number to 0.7.4 Oct 19, 2018
OWNERS Create OWNERS Sep 17, 2018
README.md fix console script to work with both Linux and MacOS Sep 5, 2018
base.Dockerfile chore(rename): rename alm -> operator-lifecycle-manager Apr 27, 2018
bill-of-materials.json add bill of materials Apr 12, 2018
boilerplate.go.txt feat(ci): add sanity check step which does basic verification before Feb 27, 2018
code-of-conduct.md *: add code of conduct 🎉 Apr 27, 2018
e2e-local-run.Dockerfile fix(e2e): fix local e2e scripts May 11, 2018
e2e-local-shift.Dockerfile Add missing binary to fix run-local-shift Oct 3, 2018
e2e.Dockerfile fix(e2e): switch to port 5443 for owned apiservice test Oct 18, 2018
logo.png fix(ci): update paths in dockerfiles Apr 30, 2018
logo.svg fix(ci): update paths in dockerfiles Apr 30, 2018
upstream.Dockerfile fix(e2e): switch to port 5443 for owned apiservice test Oct 18, 2018

README.md

Docker Repository on Quay Docker Repository on Quaypipeline status

Operator Lifecycle Manager

This project is a component of the Operator Framework, an open source toolkit to manage Kubernetes native applications, called Operators, in an effective, automated, and scalable way. Read more in the introduction blog post.

OLM extends Kubernetes to provide a declarative way to install, manage, and upgrade operators and their dependencies in a cluster.

It also enforces some constraints on the components it manages in order to ensure a good user experience.

This project enables users to do the following:

  • Define applications as a single Kubernetes resource that encapsulates requirements and metadata
  • Install applications automatically with dependency resolution or manually with nothing but kubectl
  • Upgrade applications automatically with different approval policies

This project does not:

  • Replace Helm
  • Turn Kubernetes into a PaaS

Getting Started

Installation

Install OLM on a Kubernetes or OpenShift cluster by following the installation guide.

For a complete end-to-end example of how OLM fits into the Operator Framework, see the Operator Framework Getting Started Guide.

Kubernetes-native Applications

An Operator is an application-specific controller that extends the Kubernetes API to create, configure, manage, and operate instances of complex applications on behalf of a user.

OLM requires that applications be managed by an operator, but that doesn't mean that each application must write one from scratch. Depending on the level of control required you may:

  • Package up an existing set of resources for OLM with helm-app-operator-kit without writing a single line of go.
  • Use the operator-sdk to quickly build an operator from scratch.

Once you have an application packaged for OLM, you can deploy it with OLM by writing a ClusterServiceVersion.

ClusterServiceVersions can be collected into CatalogSources which will allow automated installation and dependency resolution via an InstallPlan, and can be kept up-to-date with a Subscription.

Learn more about the components used by OLM by reading about the architecture and philosophy.

Key Concepts

CustomResourceDefinitions

OLM standardizes interactions with operators by requiring that the interface to an operator be via the Kubernetes API. Because we expect users to define the interfaces to their applications, OLM currently uses CRDs to define the Kubernetes API interactions.

Examples: EtcdCluster CRD, EtcdBackup CRD

Descriptors

OLM introduces the notion of “descriptors” of both spec and status fields in kubernetes API responses. Descriptors are intended to indicate various properties of a field in order to make decisions about their content. For example, this can drive connecting two operators together (e.g. connecting the connection string from a mysql instance to a consuming application) and be used to drive rich interactions in a UI.

See an example of a ClusterServiceVersion with descriptors

Dependency Resolution

To minimize the effort required to run an application on kubernetes, OLM handles dependency discovery and resolution of applications running on OLM.

This is achieved through additional metadata on the application definition. Each operator must define:

  • The CRDs that it is responsible for managing.
    • e.g., the etcd operator manages EtcdCluster.
  • The CRDs that it depends on.
    • e.g., the vault operator depends on EtcdCluster, because Vault is backed by etcd.

Basic dependency resolution is then possible by finding, for each “required” CRD, the corresponding operator that manages it and installing it as well. Dependency resolution can be further constrained by the way a user interacts with catalogs.

Granularity

Dependency resolution is driven through the (Group, Version, Kind) of CRDs. This means that no updates can occur to a given CRD (of a particular Group, Version, Kind) unless they are completely backward compatible.

There is no way to express a dependency on a particular version of an operator (e.g. etcd-operator v0.9.0) or application instance (e.g. etcd v3.2.1). This encourages application authors to depend on the interface and not the implementation.

Discovery, Catalogs, and Automated Upgrades

OLM has the concept of catalogs, which are repositories of application definitions and CRDs.

Catalogs contain a set of Packages, which map “channels” to a particular application definition. Channels allow package authors write different upgrade paths for different users (e.g. alpha vs. stable).

Example: etcd package

Users can subscribe to channels and have their operators automatically updated when new versions are released.

Here's an example of a subscription:

apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
  name: etcd
  namespace: local 
spec:
  channel: alpha
  name: etcd
  source: rh-operators

This will keep the etcd ClusterServiceVersion up to date as new versions become available in the catalog.

User Interface

Use the OpenShift admin console (compatible with upstream Kubernetes) to interact with and visualize the resources managed by OLM. Create subscriptions, approve install plans, identify Operator-managed resources, and more.

Ensure kubectl is pointing at a cluster and run:

$ ./scripts/run_console_local.sh

Then visit http://localhost:9000 to view the console.

Subscription detail view: screenshot_20180628_165240