ihji commented on a change in pull request #15307:
URL: https://github.com/apache/beam/pull/15307#discussion_r689744145
##########
File path: release/src/main/scripts/run_rc_validation.sh
##########
@@ -178,6 +193,18 @@ if [[ -z `which gnome-terminal` ]]; then
fi
gnome-terminal --version
+echo "-----------------Checking kubectl-----------------"
+if [[ -z `which kubectl` ]]; then
+ echo "You don't have kubectl installed."
+ if [[ "$INSTALL_KUBECTL" = true ]]; then
+ sudo apt-get install kubectl
+ else
+ echo "kubectl is not installed. Validation on Python cross-language Kafka
taxi will be skipped."
Review comment:
Looks like we already exit the program but only the printed message is
misleading. Update the messages.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]