KIND runs Kubernetes cluster in Docker, and leverages Docker networking for all the network features: port mapping, IPv6, containers connectivity, etc.
KIND uses a docker user defined network.
It creates a bridge named kind
| # make sure to read the docs here https://nvchad.com/docs/quickstart/install | |
| # two ways to install neovim, like this | |
| sudo add-apt-repository ppa:neovim-ppa/stable -y | |
| sudo add-apt-repository ppa:neovim-ppa/unstable -y | |
| sudo apt update && sudo apt upgrade -y | |
| sudo apt install neovim -y | |
| # or like this | |
| sudo snap install node nvim --classic | |
| # then | |
| sudo apt install ripgrep mingw-w64 build-essential -y |
| Function isOdd($int){ | |
| if($int == 0) return false; | |
| if($int == 1) return true; | |
| if($int == 2) return false; | |
| if($int == 3) return true; | |
| if($int == 4) return false; | |
| if($int == 5) return true; | |
| if($int == 6) return false; | |
| if($int == 7) return true; | |
| if($int == 8) return false; |
KIND runs Kubernetes cluster in Docker, and leverages Docker networking for all the network features: port mapping, IPv6, containers connectivity, etc.
KIND uses a docker user defined network.
It creates a bridge named kind
KIND runs Kubernetes cluster in Docker, and leverages Docker networking for all the network features: port mapping, IPv6, containers connectivity, etc.
KIND uses a docker user defined network.
It creates a bridge named kind
Go to this link to get your desired version of the OC client tool. I have choosen the latest version available in July, 2020.
| version: "3" | |
| services: | |
| jaeger: | |
| image: jaegertracing/all-in-one:1.8 | |
| ports: | |
| - 6831:6831/udp | |
| - 6832:6832/udp | |
| - 5778:5778 | |
| - 16686:16686 | |
| - 14268:14268 |
| # /bin/bash | |
| # make sure this file has execution permission to run (do NOT use sudo: | |
| # $ chmod +x vim_installer.sh | |
| # $ ./vim_installer.sh | |
| # ===================================================================== | |
| # install git | |
| echo "======== VIM INSTALLER ========" | |
| echo "MAKE SURE YOU HAVE GIT INSTALLED!" | |
| echo "Then press any key to continue..." |
| ## | |
| # Base Makefile with ability to list targets | |
| # | |
| .PHONY: help about list targets | |
| ME := $(realpath $(firstword $(MAKEFILE_LIST))) | |
| # Contains trailing '/' | |
| # | |
| PWD := $(dir $(ME)) |
| # Assume we are in your home directory | |
| cd ~/ | |
| # Clone the repo from GitLab using the `--mirror` option | |
| $ git clone --mirror git@your-gitlab-site.com:mario/my-repo.git | |
| # Change into newly created repo directory | |
| $ cd ~/my-repo.git | |
| # Push to GitHub using the `--mirror` option. The `--no-verify` option skips any hooks. |