#   COPYRIGHT NOTICE STARTS HERE
 #
-#   Copyright 2018 © Samsung Electronics Co., Ltd.
+#   Copyright 2018-2019 © Samsung Electronics Co., Ltd.
 #
 #   Licensed under the Apache License, Version 2.0 (the "License");
 #   you may not use this file except in compliance with the License.
     echo "Usage:"
     echo -e "./$(basename $0) [destination directory]\n"
     echo "Examples:"
-    echo "  ./$(basename $0) ./git-repo"
+    echo "  ./$(basename $0) ./downloads"
 }
 
 if [ "${1}" == "-h" ] || [ -z "${1}" ] ; then
     OUTDIR="${1}"
 fi
 
-# we are keeping just casablanca support in casablanca branch
-KUBECTL_VERSION=${KUBECTL_VERSION:-1.11.2}
-HELM_VERSION=${HELM_VERSION:-2.9.1}
+# we are keeping just dublin support in dublin branch
+KUBECTL_VERSION=${KUBECTL_VERSION:-1.13.5}
+HELM_VERSION=${HELM_VERSION:-2.12.3}
 
 mkdir -p "$OUTDIR"
 cd "$OUTDIR"
     url_file="${url%%\?*}"
     file=$(basename "$url_file")
     echo "Downloading $url"
-    curl --retry 5 -y 10 -Y 10 --location  "$url" -o "$file"
+    curl -s --retry 5 -y 10 -Y 10 --location  "$url" -o "$file"
 }
 
 download "https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/amd64/kubectl"