kubernetes/cluster/addons
Kubernetes Prow Robot e524a5ab42
Merge pull request #103282 from MrHohn/cpa-multi-arch
Update dns-horizontal-autoscaler to use the multi-arch image
2021-07-01 11:47:42 -07:00
..
addon-manager Clean apply's prune and kube addons with batch/v1 CronJob 2021-06-02 14:27:29 +02:00
calico-policy-controller Merge pull request #96615 from caseydavenport/casey-route-table-range 2021-06-25 05:18:44 -07:00
cluster-loadbalancing Updating the version to the recent tag. 2020-12-30 13:13:55 -08:00
dashboard Fix OWNERS 2021-06-22 10:08:13 +09:00
device-plugins/nvidia-gpu Update nvidia-gpu-device-plugin addon image path 2020-11-05 18:25:00 +00:00
dns Merge pull request #101417 from pacoxu/node-local-dns-docs 2021-04-29 18:10:19 -07:00
dns-horizontal-autoscaler Update dns-horizontal-autoscaler to use the wqmulti-arch image 2021-06-28 16:53:32 -07:00
fluentd-elasticsearch [go1.16] Update to go1.16.5 2021-06-08 14:11:32 +02:00
fluentd-gcp fix prometheus-to-sd image for fluentbit 2021-05-27 10:54:10 -07:00
ip-masq-agent Merge pull request #95843 from varunmar/update-ip-masq-agent 2020-10-26 11:23:16 -07:00
kube-proxy Add arm64 support for GCE node configuration 2021-02-19 14:22:26 -08:00
metadata-agent Update yaml files to use seccomp GA syntax 2020-08-13 08:45:36 +01:00
metadata-proxy update event-exporter and prometheus-to-sd versions in cluster addons 2021-05-13 11:40:41 -07:00
metrics-server Merge pull request #102070 from bskiba/master 2021-05-24 13:38:41 -07:00
node-problem-detector update node-problem-detector npd to v0.8.8 2021-06-29 09:35:32 +08:00
rbac Add service/status glbc rbac permissions 2021-03-15 13:01:06 -07:00
storage-class Merge pull request #75638 from ramnar/bugfix_24thMarch 2019-06-20 06:54:49 -07:00
volumesnapshots Add Snapshot Controller e2e metric tests 2021-05-20 23:29:23 -07:00
OWNERS /cluster: add / update OWNERS 2020-04-24 03:21:07 +03:00
README.md Removed broken link to Analytics 2020-08-13 16:03:37 -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.