kubernetes/cluster/addons
Vinay Bannai a15bc5954c The l7-default-backend/defult-http-backend now points to a new version of the 404-server-with-metrics.
Uses new container registry: gcr.io/google-container with the new version for the ingress-gce-404-server-with-metrics-amd64:v1.10.11
2020-12-30 13:13:55 -08:00
..
addon-manager Merge pull request #96679 from stmcginnis/appspot-cleanup 2020-12-10 23:17:22 -08:00
calico-policy-controller Update to Calico v3.16.2 2020-10-08 16:05:45 -07:00
cluster-loadbalancing The l7-default-backend/defult-http-backend now points to a new version of the 404-server-with-metrics. 2020-12-30 13:13:55 -08:00
dashboard Remove stale analytics links from docs 2020-11-18 07:04:48 -06:00
device-plugins/nvidia-gpu gpu device plugin uses EnsureExists addon mode 2020-09-11 10:19:57 -07:00
dns Use nodecache 1.16.0 image with CoreDNS 1.7 2020-12-08 10:40:36 -08:00
dns-horizontal-autoscaler Merge pull request #93975 from avr1254/master 2020-09-03 06:16:09 -07:00
fluentd-elasticsearch [go1.15] Update to go1.15.5 2020-11-23 20:49:56 -05:00
fluentd-gcp Remove stale analytics links from docs 2020-11-18 07:04:48 -06:00
ip-masq-agent Merge pull request #95843 from varunmar/update-ip-masq-agent 2020-10-26 11:23:16 -07:00
kube-proxy Replace Beta OS/arch labels with the GA ones 2020-02-13 09:38:51 -08:00
metadata-agent Update yaml files to use seccomp GA syntax 2020-08-13 08:45:36 +01:00
metadata-proxy bind metadata proxy to 0.0.0.0 2020-09-01 18:34:02 -07:00
metrics-server Remove stale analytics links from docs 2020-11-18 07:04:48 -06:00
node-problem-detector Bump node-problem-detector to v0.8.5 2020-11-20 20:00:25 +01:00
rbac fix: correct glbc ClusterRole 2020-09-24 16:14:36 +08:00
storage-class Merge pull request #75638 from ramnar/bugfix_24thMarch 2019-06-20 06:54:49 -07:00
volumesnapshots Update snapshot CRDs 2020-11-11 15:58:46 +00:00
BUILD Update repo-infra, bazel-skylib, rules_docker, and rules_go dependencies 2019-02-12 17:55:10 -08: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.