ConfigMap added to kube addon manager.

This commit is contained in:
Douglas Gibbons 2016-07-11 13:54:18 +01:00
parent 0a6561f5e9
commit 2a589b0963
2 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,8 @@
The `addon-manager` periodically checks for Kubernetes manifest changes in the `/etc/kubernetes/addons` directory,
and when there's a new or changed addon, the `addon-manager` automatically `kubectl create`s it.
It supports `ReplicationControllers`, `Deployments`, `DaemonSets`, `Services`, `PersistentVolumes` and `PersistentVolumeClaims`.
It supports `ReplicationControllers`, `Deployments`, `DaemonSets`, `ConfigMaps`, `Services`, `PersistentVolumes` and
`PersistentVolumeClaims`.
The `addon-manager` is built for multiple architectures.

View File

@ -489,6 +489,7 @@ function update-addons() {
reconcile-objects ${addon_path} Service "" &
reconcile-objects ${addon_path} PersistentVolume "" &
reconcile-objects ${addon_path} PersistentVolumeClaim "" &
reconcile-objects ${addon_path} ConfigMap "" &
wait-for-jobs
if [[ $? -eq 0 ]]; then