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
| 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. |
| #!/bin/bash | |
| # Restrictive Iptables Based Firewall for Webserver script | |
| # Copyright (C) 2012 Cédric Walter - www.waltercedric.com | |
| # Credits to all various authors | |
| # | |
| # This program is free software: you can redistribute it and/or modify | |
| # it under the terms of the GNU General Public License as published by | |
| # the Free Software Foundation, either version 3 of the License, or | |
| # (at your option) any later version. |