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
##################################################################################################################################################################################### | |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| | |
||**************|******|*****************||*******************||******||*****************||******************||******||*****************||*******************|*********************|| | |
|| KUBERNETES | KUBE | ALL-IS-A-KUBE || "All IS A KUBE" || KUBE || ALL-IS-A-KUBE || "All IS A KUBE" || KUBE || ALL-IS-A-KUBE || "All IS A KUBE" | KUBE | KUBERNETES || | |
|| KUBERNETES | KUBE | ALL-IS-A-KUBE || "All IS A KUBE" || KUBE || ALL-IS-A-KUBE || "All IS A KUBE" || KUBE || ALL-IS-A-KUBE || "All IS A KUBE" | KUBE | KUBERNETES || | |
|| ++++++++++ | ++++ | +++++++++++++ || +++++++++++++++ || ++++ || +++++++++++++ || ++++++++++++++ || |
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
############ NEW ALIAS ########################### | |
alias up='apt update && apt full-upgrade -y && apt -y autoremove' | |
alias os='cat /etc/os-release' | |
alias aptin='apt -y install' | |
alias snapin='snap install' | |
alias brewin='brew install' | |
alias dock='docker' | |
alias dops='docker ps' | |
alias ku='kubectl' | |
alias kubectl='k3s kubectl' |
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
apt install -y wget curl nano git cockpit cockpit-ws cockpit-podman cockpit-storaged cockpit-networkmanager cockpit-packagekit cockpit-machines && wget https://github.com/45Drives/cockpit-navigator/releases/download/v0.5.5/cockpit-navigator_0.5.5-2focal_all.deb && apt install ./cockpit-navigator_0.5.5-2focal_all.deb | |
# https://github.com/45Drives/cockpit-navigator |
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
deb http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse | |
deb-src http://archive.ubuntu.com/ubuntu/ focal main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse | |
deb-src http://archive.ubuntu.com/ubuntu/ focal-updates main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse | |
deb-src http://archive.ubuntu.com/ubuntu/ focal-security main restricted universe multiverse | |
deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse |
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
#!/bin/bash | |
# curl -s https://gist.githubusercontent.com/ilude/457f2ef2e59d2bff8bb88b976464bb91/raw/cluster_create_setup.sh?$(date +%s) > ~/bin/setup_cluster.sh; chmod +x ~/bin/setup_cluster.sh; setup_cluster.sh | |
echo "begin cluster_create_setup.sh" | |
export CREATE_TEMPLATE=1 #false | |
while test $# -gt 0; do | |
case "$1" in | |
--template) | |
export CREATE_TEMPLATE=0 #true |
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
## Start from Zero | |
curl -sfL https://get.k3s.io | sh - && apt install docker.io -y && systemctl enable docker && systemctl start docker && curl -L "https://github.com/docker/compose/releases/download/v2.0.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose && chmod +x /usr/local/bin/docker-compose && docker volume create portainer_data && docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce && wget https://gist.githubusercontent.com/akamas/8a165c31bd8935d707afc37ab60ac1a2/raw/890413957f6c30a3ca9bedc88aba6f504e15960d/k3s-persistent-claim.yml -c -O k3s-persistent-claim.yml && chmod +x k3s-persistent-claim.yml && kubectl apply -f k3s-persistent-claim.yml && wget https://gist.githubusercontent.com/akamas/e1acdf71011918786b4915878cdca803/raw/38c00685b82f5acde19a4cddd74a543c2ed84995/k3s-registry-deployment.yml -c -O k3s-registry-deployment.yml && chmod +x k3s-registry-deployment.y |
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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: docker-registry | |
labels: | |
app: docker-registry | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: |
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
apiVersion: v1 | |
kind: PersistentVolumeClaim | |
metadata: | |
name: docker-registry-pvc | |
spec: | |
storageClassName: "local-path" | |
accessModes: | |
- ReadWriteOnce | |
resources: | |
requests: |
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
https://github.com/digitalis-io/k3s-on-prem-production |
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
https://pve.proxmox.com/wiki/Web_Interface_Via_Nginx_Proxy |