项目作者: kubeops

项目描述 :
Runs commands when a Kubernetes Configmap/Secret changes
高级语言: Go
项目地址: git://github.com/kubeops/kloader.git
创建时间: 2017-02-01T10:18:32Z
项目社区:https://github.com/kubeops/kloader

开源协议:Apache License 2.0

下载


Go Report Card

WebsiteSlackForumTwitter

kloader

Runs commands when a Kubernetes Configmap/Secret changes.

Why Kloader?

Many applications require configuration via some combination of config files. These configuration artifacts
should be decoupled from image content in order to keep containerized applications portable.
The ConfigMap API resource provides mechanisms to inject containers with configuration data while keeping
containers agnostic of Kubernetes. ConfigMap can be used to store fine-grained information like individual
properties or coarse-grained information like entire config files or JSON blobs. Read More about the use cases and usage of ConfigMap.

Kloader watches a specified ConfigMap, mount the ConfigMap data in specified directory as files. In case of
any update in ConfigMap data Kloader updates the mounted file and run an additional bash script.

Configuration

Kloader has following configurations that should be provided as flags.

  1. --config-map
  2. ConfigMap name that will be mounted.
  3. --mount-location
  4. Location the ConfigMap Will be mounted inside
  5. --boot-cmd
  6. bash script or script file location that will be run after mounted file update.
  7. --k8s-master
  8. Kubernetes API server address. Default is InCluster address.
  9. --k8s-config
  10. Kubernetes API Configurations. Default is InCluster config.

Building Kloader

  1. ./hack/make.py build kloader

Release Kloader

  1. ./hack/make.py build; env APPSCODE_ENV=prod ./hack/make.py push; ./hack/make.py push

Versioning Policy

Kloader does not follow semver, rather the major version of operator points to the
Kubernetes client-go version. You can verify this
from the glide.yaml file. This means there might be breaking changes between point releases of the kloader. Please always check the release notes for upgrade instructions.


Kloader collects anonymous usage statistics to help us learn how the software is being used and how we can improve it.
To disable stats collection, run the binary with the flag
--analytics=false.