Skip to content

cpg1111/krud

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

krud

krud is a kubernetes rolling-update service for use with docker registry webhook pushes.

For example, when you push a new image to Quay.io, you can configure a HTTP POST webhook. When krud gets the webhook, it does a rolling update of a kubernetes replication controller (almost identical to kubectl rolling-update). krud can run in a separate kubernetes service along side your other services.

WARNING: krud is an early product. It has no authentication, can easily be DDoS'd, and is not widely tested. It is open source so we can improve it and remove this message in the future.

Usage

Configure the webhook to connect to /push at the address it's running, for example: http://krud.company.com/push.

A bad UI exists at / showing status of past update attempts.

Configuration

The following environment variables are used to configure krud:

Required:

  • KRUD_CONTROLLER_NAME: name of the replication controller to update

Optional:

  • KRUD_DEPLOYMENT_KEY: key to use to differentiate between two different controllers; defaults to deployment
  • KRUD_K8S_ENDPOINT: kubernetes endpoint; defaults to http://localhost:8080
  • KRUD_LISTEN: listen address; defaults to :9500
  • KRUD_NAMESPACE: namespace of the replication controller; defaults to the kubernetes default

These options can also be specified on the command line. See krud -help for usage.

Supported Registries

Running on kubernetes

There are example rc.yaml and svc.yaml files. The only required change is setting the KRUD_CONTROLLER_NAME environment variable in rc.yaml.

About

kubernetes rolling update webhook server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%