Sha256: 3c64c82004b12a4c4c652e6f5210488821a350dd1e2f229a1b757e3cf6f79321

Contents?: true

Size: 710 Bytes

Versions: 20

Compression:

Stored size: 710 Bytes

Contents

#!/usr/bin/env bash
set -euo pipefail
IFS=$'\n\t'

bundle install

if [ ! -x "$(which minikube)" ]; then
  echo -e "\n\033[0;33mIf you're going to run the tests, please follow the minikube setup instructions for your operating system:\nhttps://kubernetes.io/docs/getting-started-guides/minikube/#installation\033[0m"
fi

if [ ! -x "$(which kubectl)" ]; then
  echo -e "\n\033[0;33mPlease install kubectl version 1.11.0 or higher:\nhttps://kubernetes.io/docs/user-guide/prereqs/\033[0m"
else
  KUBECTL_VERSION=$(kubectl version --short --client | grep -oe "v[[:digit:]\.]\+")
  echo -e "\n\033[0;32mKubectl version $KUBECTL_VERSION is already installed. This gem requires version v1.11.0 or greater.\033[0m"
fi

Version data entries

20 entries across 20 versions & 3 rubygems

Version Path
krane-2.1.2 bin/setup
krane-2.1.1 bin/setup
krane-2.1.0 bin/setup
krane-2.0.0 bin/setup
kubernetes-deploy-1.0.0.pre.2 bin/setup
krane-1.1.4 bin/setup
krane-1.1.3 bin/setup
krane-1.1.2 bin/setup
krane-1.1.1 bin/setup
krane-1.1.0 bin/setup
tobsch-krane-1.0.2 bin/setup
tobsch-krane-1.0.1 bin/setup
tobsch-krane-1.0.0 bin/setup
krane-1.0.0 bin/setup
kubernetes-deploy-1.0.0.pre.1 bin/setup
kubernetes-deploy-0.31.1 bin/setup
kubernetes-deploy-0.31.0 bin/setup
kubernetes-deploy-0.30.0 bin/setup
kubernetes-deploy-0.29.0 bin/setup
kubernetes-deploy-0.28.0 bin/setup