Skip to content

Commit

Permalink
Merge pull request #1498 from zapman449/zapman449/update-hotfix-scrip…
Browse files Browse the repository at this point in the history
…t-1497

update the hotfix script for tolerating null sources on projected volumes
  • Loading branch information
k8s-ci-robot committed Jun 23, 2021
2 parents a1fbb70 + 29729af commit c2bff84
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions scripts/apply-hotfixes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,17 @@ else
exit 1
fi;

# Patching commits for Tolerating Null Sources on Projected Volumes
# TODO: remove this patch when we release v20 clients
# Ref: https://github.com/kubernetes-client/python/pull/1497
git cherry-pick -n f3dbc8cbf1ab2aaf5e3bd8c0f0fc068e67823971
if [ $? -eq 0 ]
then
echo Succesfully patched changes for Tolerating Null Sources on Projected Volumes
else
echo Failed to patch changes for Tolerating Null Sources on Projected Volumes
git restore --staged .
exit 1
fi;

git commit -m "Apply hotfixes"

0 comments on commit c2bff84

Please sign in to comment.