kubernetes/cluster/addons
Marian Lobur be1704ae84 Bump version of event-exporter and prometheus-to-sd.
Version 0.3.1 of event-exporter switches from json usage to protobuf.
Version 0.7.2 of prometheus-to-sd introduces security fixes and new
metrics.
2019-10-02 14:55:53 +02:00
..
addon-manager Adde 9.0.2 to CHANGELOG.md 2019-08-01 20:15:46 +02:00
calico-policy-controller Fix the cluster role for typha horizontal scaler. 2019-09-23 11:48:04 -07:00
cluster-loadbalancing The default-http-backend for handling 404 pages will now point to 404 handler 2019-06-17 11:24:47 -07:00
cluster-monitoring Bump addon-resizer to 1.8.6 2019-09-26 10:00:59 +02:00
dashboard Offical kubernetes dashboard should schedule to linux node 2019-09-22 08:08:04 +08:00
device-plugins/nvidia-gpu feat: cleanup pod critical pod annotations feature 2019-08-09 08:41:23 +08:00
dns Remove redundant setting. 2019-09-19 08:15:02 +01:00
dns-horizontal-autoscaler Bump cluster proportional autoscaler to 1.7.1 2019-08-26 13:22:53 -07:00
fluentd-elasticsearch Bump k8s.io/klog to v1.0.0 2019-09-23 16:51:43 +08:00
fluentd-gcp Bump version of event-exporter and prometheus-to-sd. 2019-10-02 14:55:53 +02:00
ip-masq-agent feat: cleanup pod critical pod annotations feature 2019-08-09 08:41:23 +08:00
kube-proxy Offical kubernetes dashboard should schedule to linux node 2019-09-22 08:08:04 +08:00
metadata-agent delete all duplicate empty blanks 2019-02-23 10:28:04 +08:00
metadata-proxy feat: cleanup pod critical pod annotations feature 2019-08-09 08:41:23 +08:00
metrics-server Bump addon-resizer to 1.8.6 2019-09-26 10:00:59 +02:00
node-problem-detector Update NPD addon to use v0.7.1 2019-08-29 11:24:13 -07:00
prometheus Bump addon-resizer to 1.8.6 2019-09-26 10:00:59 +02:00
rbac Add read-only rbac for csinodes to cluster-autoscaler 2019-09-06 17:38:48 +02:00
storage-class Merge pull request #75638 from ramnar/bugfix_24thMarch 2019-06-20 06:54:49 -07:00
BUILD Update repo-infra, bazel-skylib, rules_docker, and rules_go dependencies 2019-02-12 17:55:10 -08:00
README.md Updated cluster/addons readme to match and point to docs 2017-10-18 10:36:24 -04:00

Legacy Cluster add-ons

For more information on add-ons see the documentation.

Overview

Cluster add-ons are resources like Services and Deployments (with pods) that are shipped with the Kubernetes binaries and are considered an inherent part of the Kubernetes clusters.

There are currently two classes of add-ons:

  • Add-ons that will be reconciled.
  • Add-ons that will be created if they don't exist.

More details could be found in addon-manager/README.md.

Cooperating Horizontal / Vertical Auto-Scaling with "reconcile class addons"

"Reconcile" class addons will be periodically reconciled to the original state given by the initial config. In order to make Horizontal / Vertical Auto-scaling functional, the related fields in config should be left unset. More specifically, leave replicas in ReplicationController / Deployment / ReplicaSet unset for Horizontal Scaling, leave resources for container unset for Vertical Scaling. The periodic reconcile won't clobbered these fields, hence they could be managed by Horizontal / Vertical Auto-scaler.

Add-on naming

The suggested naming for most of the resources is <basename> (with no version number). Though resources like Pod, ReplicationController and DaemonSet are exceptional. It would be hard to update Pod because many fields in Pod are immutable. For ReplicationController and DaemonSet, in-place update may not trigger the underlying pods to be re-created. You probably need to change their names during update to trigger a complete deletion and creation.

Analytics