Commit 2a589b09 authored by Douglas Gibbons's avatar Douglas Gibbons

ConfigMap added to kube addon manager.

parent 0a6561f5
...@@ -3,7 +3,8 @@ ...@@ -3,7 +3,8 @@
The `addon-manager` periodically checks for Kubernetes manifest changes in the `/etc/kubernetes/addons` directory, 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. 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. The `addon-manager` is built for multiple architectures.
......
...@@ -489,6 +489,7 @@ function update-addons() { ...@@ -489,6 +489,7 @@ function update-addons() {
reconcile-objects ${addon_path} Service "" & reconcile-objects ${addon_path} Service "" &
reconcile-objects ${addon_path} PersistentVolume "" & reconcile-objects ${addon_path} PersistentVolume "" &
reconcile-objects ${addon_path} PersistentVolumeClaim "" & reconcile-objects ${addon_path} PersistentVolumeClaim "" &
reconcile-objects ${addon_path} ConfigMap "" &
wait-for-jobs wait-for-jobs
if [[ $? -eq 0 ]]; then if [[ $? -eq 0 ]]; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment