podset-operator

command module
v0.0.0-...-f96b104 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 12, 2019 License: Apache-2.0 Imports: 15 Imported by: 0

README

PodSet Operator

Objective of this Operator/Controller is demonstrate ReplicaSet kind of resource implementation using Kubernetes controller pattern. Another objective of this repo. is to show how to build the controller from scratch and what challenges a developer could face. So that a developer could understand the beauty KuberBuilder or Operator SDK frameworks

PodSet resource

Once user applies the PodSet (kubectl apply -f podset.yaml) resource, controller could spin up number of pods mentioned as per replicas filed.

e.g. User want to spin up 3 pod

apiVersion: demo.k8s.io/v1alpha1
kind: PodSet
metadata:
  name: three-podset
spec:
  replicas: 3

Prerequisites

  • Kubernetes cluster 1.9 + (minikube also works)
  • golang 1.11 +
  • set GO111MODULE="on" env if source code is in $GOPATH

Presentation

Presentation deck

Tutorial

Check out the code according to following instruction and check the README file to follow the further instructions.

step 1
git checkout step-1

covers basic code and scaffolding setup

step 2
git checkout step-2

Covers how to define CRD types, register CRD's and generate client API's using go-client and generators It covers simple program that issues watch request to PodSet resource and print's resource state changes on console.

step 3
git checkout step-3

Covers functional controller using basic generated code. It shows how to issue watch requests and bring PodSet resource to desired state (reconciliation).

step 4
git checkout step-4

Covers fully functional controller using shared informers, listers and workqueues. It shows how to generate all those objects. At this point one could able to relate why controllers are written in particular way.

Note: This code is intended for educational purpose. While less focus is given on code quality aspect.

Credits

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
pkg
client/clientset/versioned
This package has the automatically generated clientset.
This package has the automatically generated clientset.
client/clientset/versioned/fake
This package has the automatically generated fake clientset.
This package has the automatically generated fake clientset.
client/clientset/versioned/scheme
This package contains the scheme of the automatically generated clientset.
This package contains the scheme of the automatically generated clientset.
client/clientset/versioned/typed/demo/v1alpha1
This package has the automatically generated typed clients.
This package has the automatically generated typed clients.
client/clientset/versioned/typed/demo/v1alpha1/fake
Package fake has the automatically generated clients.
Package fake has the automatically generated clients.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL