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.
1 parent ea0439c commit 031a402Copy full SHA for 031a402
tools/install.sh
@@ -257,7 +257,9 @@ function main() {
257
install
258
add_route_to_haproxy
259
260
+ log_info "Wait all pods ready..."
261
kubectl wait --for=condition=Ready pod -l app.kubernetes.io/instance=datamate -n "$NAMESPACE" --timeout=300s >/dev/null
262
+ log_info "DataMate install successfully!"
263
install_package
264
}
265
tools/uninstall.sh
@@ -83,7 +83,9 @@ function main() {
83
uninstall
84
remove_route_from_haproxy
85
86
+ log_info "Wait all pods terminating..."
87
kubectl wait --for=delete pod -l app.kubernetes.io/instance=datamate -n "$NAMESPACE" --timeout=300s >/dev/null
88
+ log_info "DataMate uninstall successfully!"
89
90
91
main "$@"
0 commit comments