diff --git a/kube-addon-update.sh b/kube-addon-update.sh index 239d163737..9f2f68022e 100755 --- a/kube-addon-update.sh +++ b/kube-addon-update.sh @@ -475,13 +475,13 @@ function update-addons() { local -r addon_path=$1 # be careful, reconcile-objects uses global variables reconcile-objects ${addon_path} ReplicationController "-" & - reconcile-objects ${addon_path} Deployment "-" & # We don't expect names to be versioned for the following kinds, so # we match the entire name, ignoring version suffix. # That's why we pass an empty string as the version separator. # If the description differs on disk, the object should be recreated. # This is not implemented in this version. + reconcile-objects ${addon_path} Deployment "" & reconcile-objects ${addon_path} Service "" & reconcile-objects ${addon_path} PersistentVolume "" & reconcile-objects ${addon_path} PersistentVolumeClaim "" &