41 lines
1.7 KiB
Bash
Executable File
41 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# Licensed to the Apache Software Foundation (ASF) under one
|
|
# or more contributor license agreements. See the NOTICE file
|
|
# distributed with this work for additional information
|
|
# regarding copyright ownership. The ASF licenses this file
|
|
# to you under the Apache License, Version 2.0 (the
|
|
# "License"); you may not use this file except in compliance
|
|
# with the License. You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing,
|
|
# software distributed under the License is distributed on an
|
|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
# KIND, either express or implied. See the License for the
|
|
# specific language governing permissions and limitations
|
|
# under the License.
|
|
# ----------------------------------------------------------------------------
|
|
|
|
set -ex
|
|
|
|
HELMVERSION=${HELMVERSION:-'helm-v3.0.0'}
|
|
MINIKUBEVERESION=${MINIKUBEVERESION:-'minikube-v1.13.1'}
|
|
K8SVERSION=${K8SVERSION:-'k8s-v1.19.2'}
|
|
|
|
curl -sSL https://get.helm.sh/${HELMVERSION}-linux-amd64.tar.gz | \
|
|
sudo tar xz -C /usr/local/bin --strip-components=1 linux-amd64/helm
|
|
|
|
sudo mkdir -p /usr/local/bin
|
|
curl -sSL "https://storage.googleapis.com/minikube/releases/${MINIKUBEVERESION#minikube-}/minikube-linux-amd64" -o /tmp/minikube
|
|
chmod +x /tmp/minikube
|
|
sudo mv /tmp/minikube /usr/local/bin/minikube
|
|
|
|
curl -sSL "https://storage.googleapis.com/kubernetes-release/release/${K8SVERSION#k8s-}/bin/linux/amd64/kubectl" -o /tmp/kubectl
|
|
chmod +x /tmp/kubectl
|
|
sudo mv /tmp/kubectl /usr/local/bin/kubectl
|
|
|
|
sudo apt-get install -y socat conntrack
|