Created
April 12, 2024 17:29
-
-
Save 9876691/275b954bb3a45e15f1a54cdf7438dfcf to your computer and use it in GitHub Desktop.
Install Bionic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo curl -sfL https://get.k3s.io | INSTALL_K3S_EXEC='server --write-kubeconfig-mode="644"' sh - | |
cp /etc/rancher/k3s/k3s.yaml ~/.kube/config && sed -i "s,127.0.0.1,$(hostname -I | awk '{print $1}'),g" ~/.kube/config | |
curl -L -s https://github.com/derailed/k9s/releases/download/v0.24.15/k9s_Linux_x86_64.tar.gz | tar xvz -C /tmp | |
sudo mv /tmp/k9s /usr/bin | |
rm -rf k9s_Linux_x86_64.tar.gz | |
export BIONIC_VERSION=1.6.35 | |
curl -OL https://github.com/bionic-gpt/bionic-gpt/releases/download/v${BIONIC_VERSION}/bionic-cli-linux && chmod +x ./bionic-cli-linux && sudo mv ./bionic-cli-linux /usr/local/bin/bionic | |
bionic install --pgadmin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment