coding4food / metacontroller

Writing kubernetes controllers can be simple

Home Page:https://metacontroller.github.io/metacontroller

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub release (latest SemVer) GitHub Release Date GitHub Docker Image Size (latest semver) Docker Pulls GitHub contributors Go Report Card codecov

Metacontroller

Metacontroller is an add-on for Kubernetes that makes it easy to write and deploy custom controllers in the form of simple scripts.

A New Home

This is the new community owned and actively maintained home for Metacontroller. The open-source project started by GKE is no longer maintained. All future updates and releases for Metacontroller will come from this repository. In time, all issues from the previous repository will be triaged and moved here. We are excited to move forward with Metacontroller as a community maintained project. A big thank you to all of the wonderful Metacontroller community members that made this happen!

Following is the immediate plan of actions:

Documentation

Please see the documentation site for details on how to install, use, or contribute to Metacontroller.

Migrating from https://github.com/GoogleCloudPlatform/metacontroller

As current version of metacontroller uses different name of the finalizer than GCP version (GCP - metacontroller.app, current version - metacontroller.io) thus after installing metacontroller you might need to clean up old finalizers, i.e. by running:

kubectl get <comma separated list of your resource types here> --no-headers --all-namespaces | awk '{print $2 " -n " $1}' | xargs -L1 -P 50 -r kubectl patch -p '{"metadata":{"finalizers": [null]}}' --type=merge

Contact

Please file GitHub issues for bugs, feature requests, and proposals.

Join the #metacontroller channel on Kubernetes Slack.

Contributing

See CONTRIBUTING.md and the contributor guide.

Licensing

This project is licensed under the Apache License 2.0.

About

Writing kubernetes controllers can be simple

https://metacontroller.github.io/metacontroller

License:Apache License 2.0


Languages

Language:Go 97.3%Language:Makefile 1.0%Language:Shell 0.6%Language:Smarty 0.6%Language:JavaScript 0.4%Language:Dockerfile 0.1%