Skip to content

Instantly share code, notes, and snippets.

View PrettySolution's full-sized avatar
☁️
in the cloud

Vasyl Herman PrettySolution

☁️
in the cloud
View GitHub Profile
@PrettySolution
PrettySolution / stress.sh
Created June 14, 2022 17:45 — forked from mikepfeiffer/stress.sh
Install Stress Utility on Amazon Linux 2
sudo amazon-linux-extras install epel -y
sudo yum install stress -y
sudo stress --cpu 8 --timeout 20
@PrettySolution
PrettySolution / install-kubectl-helm-ubuntu.sh
Last active November 15, 2020 16:37 — forked from onuralp/install-kubectl-helm-ubuntu.sh
This script installs kubectl kubectx and helm to you ubuntu. I usually use docker to connect kubectl. But I created this for some reason. Enjoy
# update
sudo apt-get update
sudo apt-get -qq update
# Install kubectl
sudo curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl
sudo chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
# Install kubectx (Switch between Kubernetes contexts/namespaces)