We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a1fbb70 + 29729af commit c2bff84Copy full SHA for c2bff84
scripts/apply-hotfixes.sh
@@ -74,4 +74,17 @@ else
74
exit 1
75
fi;
76
77
+# Patching commits for Tolerating Null Sources on Projected Volumes
78
+# TODO: remove this patch when we release v20 clients
79
+# Ref: https://github.com/kubernetes-client/python/pull/1497
80
+git cherry-pick -n f3dbc8cbf1ab2aaf5e3bd8c0f0fc068e67823971
81
+if [ $? -eq 0 ]
82
+then
83
+ echo Succesfully patched changes for Tolerating Null Sources on Projected Volumes
84
+else
85
+ echo Failed to patch changes for Tolerating Null Sources on Projected Volumes
86
+ git restore --staged .
87
+ exit 1
88
+fi;
89
+
90
git commit -m "Apply hotfixes"
0 commit comments