This file contains hidden or 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
setw -g mode-keys vi | |
set -g prefix ^A | |
set -g set-clipboard on | |
set -g status-position top | |
set -g renumber-windows on | |
set -g base-index 1 | |
set -g mouse on |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
#!/bin/bash | |
# SOURCE: https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/install-kubeadm/ | |
# DATE: Jan 12 2023 | |
# update apt package index and install packages needed to use the Kubernetes apt repository | |
sudo apt-get update | |
sudo apt-get install -y apt-transport-https ca-certificates curl | |
# Download the Google Cloud public signing key: |