Fixed typos

This commit is contained in:
Mehdi Osman 2021-05-18 20:50:52 +02:00 committed by GitHub
parent 4b761321d6
commit f8e6a3635d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,7 +22,7 @@ echo -e ${reset}
## installing kubectl
which kubectl &> /dev/null || {
echo "kubectl not installed. installing..."
echo "kubectl not installed. Installing it..."
sudo curl -SsL https://dl.k8s.io/release/v1.20.0/bin/linux/amd64/kubectl -o /usr/local/bin/kubectl ; sudo chmod +x /usr/local/bin/kubectl
}
@ -34,7 +34,7 @@ which stern &> /dev/null || {
## installing k9s
which k9s &> /dev/null || {
echo "k9s not installed. installing..."
echo "k9s not installed. Installing it..."
sudo curl -SsL https://github.com/derailed/k9s/releases/download/v0.24.2/k9s_Linux_x86_64.tar.gz -o /tmp/k9s.tar.gz
cd /tmp
tar -xf k9s.tar.gz
@ -44,13 +44,13 @@ which k9s &> /dev/null || {
}
which ansible &> /dev/null || {
echo "ansible not installed. Installing..."
echo "ansible not installed. Installing it..."
which pip || (sudo apt update && sudo apt install python3-pip -y)
sudo pip3 install ansible==2.10.0
}
which docker &> /dev/null || {
echo "docker is not installed. Installing..."
echo "docker is not installed. Installing it..."
user=`whoami`
sudo apt install docker.io -y
sudo usermod -aG docker $user
@ -59,7 +59,7 @@ which docker &> /dev/null || {
## installing helm
which helm &> /dev/null
if [[ $? -ne 0 ]]; then
echo "helm not installed. installing..."
echo "helm not installed. Installing it..."
curl -ssl https://get.helm.sh/helm-v3.4.2-linux-amd64.tar.gz -o /tmp/helm.tar.gz
tar -xf /tmp/helm.tar.gz
chmod +x linux-amd64/helm
@ -80,7 +80,7 @@ color()(set -o pipefail;"$@" 2>&1>&3|sed $'s,.*,\e[31m&\e[m,'>&2)3>&1
usage()
{
echo -e ${bold}${yellow} '''
This script will install and configure openreplay apps and databases on the kubernetes cluster,
This script will install and configure OpenReplay apps and databases on the kubernetes cluster,
which is accesd with the ${HOME}/.kube/config or $KUBECONFIG env variable.
'''
cat << EOF
@ -95,12 +95,12 @@ EOF
[ -a | --app APP_NAME ] to install/reinstall specific application
[ -t | --type small|medium|ideal ]"
echo -e "${reset}${blue}type defines the resource limits applied for the installation:
small: 4core 8G machine
small: 2core 8G machine
medium: 4core 16G machine
ideal: 8core 32G machine
apps can specifically be installed/reinstalled:
alerts assets auth chalice ender http integrations ios-proxy metadata negative pg-stateless pg preprocessing redis sink storage frontend
alerts assets chalice ender http integrations ios-proxy pg redis sink storage frontend
${reset}"
echo type value: $installation_type
exit 0