-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rajesh G
committed
Jan 16, 2023
1 parent
579077d
commit a200ea4
Showing
92 changed files
with
308 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Empty file.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
#!/bin/bash | ||
|
||
# Networking and base os setup and installation of basic os libraries | ||
# disable swap | ||
sudo sed -i '/ swap / s/^\(.*\)$/#\1/g' /etc/fstab | ||
sudo swapoff -a | ||
|
||
# Enable kernel modules | ||
sudo modprobe overlay | ||
sudo modprobe br_netfilter | ||
|
||
# Add some settings to sysctl | ||
sudo tee /etc/sysctl.d/kubernetes.conf<<EOF | ||
net.bridge.bridge-nf-call-ip6tables = 1 | ||
net.bridge.bridge-nf-call-iptables = 1 | ||
net.ipv4.ip_forward = 1 | ||
EOF | ||
|
||
sudo tee /etc/sysctl.d/k8s.conf<<EOF | ||
net.bridge.bridge-nf-call-ip6tables = 1 | ||
net.bridge.bridge-nf-call-iptables = 1 | ||
net.ipv4.ip_forward = 1 | ||
EOF | ||
# Reload sysctl | ||
sudo sysctl --system | ||
|
||
sudo apt-get update -y | ||
sudo apt-get install -y apt-transport-https ca-certificates curl gnupg lsb-release gnupg2 software-properties-common | ||
|
||
sudo lsmod | grep br_netfilter | ||
|
||
# CRI implementation and other related setup | ||
sudo tee /etc/modules-load.d/containerd.conf <<EOF | ||
overlay | ||
br_netfilter | ||
EOF | ||
|
||
# Add Docker repo | ||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | ||
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | ||
|
||
# Install containerd | ||
sudo apt update | ||
sudo apt install -y containerd.io | ||
|
||
# Configure containerd and start service | ||
sudo mkdir -p /etc/containerd | ||
sudo containerd config default>/etc/containerd/config.toml | ||
|
||
# restart containerd | ||
sudo systemctl restart containerd | ||
sudo systemctl enable containerd | ||
sudo systemctl status containerd | ||
|
||
# Installation of kubeadm, kubelet and kubectl | ||
sudo curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg | ||
|
||
echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list | ||
|
||
sudo apt-get update -y | ||
#Specify a version | ||
sudo apt-get install -y kubelet=1.25.0-00 kubectl=1.25.0-00 kubeadm=1.25.0-00 | ||
|
||
sudo apt-mark hold kubelet kubeadm kubectl | ||
sudo systemctl enable kubelet | ||
|
||
IPADDR=$(wget -qO- http://checkip.amazonaws.com) | ||
|
||
sudo rm /etc/containerd/config.toml | ||
sudo systemctl restart containerd | ||
sudo systemctl start kubelet | ||
#sudo kubeadm init --pod-network-cidr=192.168.0.0/16 | ||
|
||
# curl https://docs.projectcalico.org/manifests/calico.yaml -O | ||
# kubectl apply -f calico.yaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"dependencies":[["vagrant-hostmanager",["= 1.8.9"]],["racc",["~> 1.4"]],["nokogiri",["~> 1.6"]],["diffy",[">= 0"]],["rexml",[">= 0"]],["xml-simple",[">= 0"]],["formatador",[">= 0.2","< 2.0"]],["excon",["~> 0.71"]],["mime-types-data",["~> 3.2015"]],["mime-types",[">= 0"]],["builder",[">= 0"]],["fog-core",["~> 2"]],["json",[">= 0"]],["ruby-libvirt",[">= 0.7.0"]],["fog-xml",["~> 0.1.1"]],["multi_json",["~> 1.10"]],["fog-json",[">= 0"]],["fog-libvirt",[">= 0.6.0"]],["vagrant-libvirt",["= 0.10.8"]]],"checksum":"ef6f5565e93f365a74a7a0dd9d3f0f586bd6da21d2ea8fa1b869a56b45642348","vagrant_version":"2.3.4"} |
1 change: 1 addition & 0 deletions
1
setup/kubeadm/.vagrant/machines/master/virtualbox/action_provision
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.5:a4dadb58-747c-44bf-87f5-ac311394a86f |
1 change: 1 addition & 0 deletions
1
setup/kubeadm/.vagrant/machines/master/virtualbox/action_set_name
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1673857774 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"name":"bento/ubuntu-22.04","version":"202206.13.0","provider":"virtualbox","directory":"boxes/bento-VAGRANTSLASH-ubuntu-22.04/202206.13.0/virtualbox"} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1001 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
a4dadb58-747c-44bf-87f5-ac311394a86f |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
f5d1b9022a68492a8d58011b8b9bc847 |
27 changes: 27 additions & 0 deletions
27
setup/kubeadm/.vagrant/machines/master/virtualbox/private_key
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
-----BEGIN RSA PRIVATE KEY----- | ||
MIIEpQIBAAKCAQEAmEY+/z6JC0nPJBoXcc3N8wQpN3HgM2FZimVLTRFSFBLcBhc3 | ||
xbgPfspuXey01tC9bk6SFqEpz/riG6a+vjm8uSX79mFaVO3xWMOAhf7qNN45j8Fu | ||
mfxycH/LPbM9X8DWmG38E/NSi23sqmHlHg+sqsjURwN7LRKk5FxLJEY8b0LbrjDN | ||
MKi9jvWI02Z27Fm1uoHxj0IiPoB9ziDWcckS9+0jiExge5onJeSPHc/DfjK0jHu1 | ||
FiJkNyQ7L7z6eDAHgOBZjJgWOvOLoq45dOnn0ckS5DmfAwGmpF8+myQLoGbMG8Kg | ||
Ykkhv2u5D7wjnCkz5OViZ9Ly6e13LEhIxdS3uwIDAQABAoIBAQCU/caOACYfQWzI | ||
Ki9eTryAV0Xs1iNEoq/11f7DvXrN4VYfL4CGmP2wVWl/xSd8OGnhEEeolLBQq22p | ||
GJHxlpStpBjQjZjRGK/Y5hFPCokmiXlQyzbovDVNFf1KtaILmqdeJd9LtfzCKCA0 | ||
5exEaZnM0QvDIAjZpTBpsFRlfcOMKCBglHuYo2+BJHhKt+686S/Oj40++kJT+ace | ||
yFsbxyOPpJYFM9MmoX2105AMwVyYglHYgzEH3d8qRXCutNOz8DWOnpBl7t5tyQjV | ||
CEIcwy9weaQ99iq7vEqv8x0pkM26lpWT5yN1AhJ3HV7VnQb2Atx18MpzlI/b4j9G | ||
77IS3Y0BAoGBAMb28iUtH0hDimhj9suR2Gr5n6m69+aImG9vvPpNMqd3gv72DlHm | ||
5RPIOeb805KmYWM1Xz5jjbk2RgLl2ZOFf6dTPERWjy9KV04cVquelxxHZOnjyTql | ||
7+PFO22pswUT49oPutw6X37o5v0sT5m+kKMTvXP/NqHSTAVuyhbkLRcbAoGBAMPs | ||
7eZqmulrVzk49wBWZruLPxPbGELGpGIDTf2hJzrhdUAstCmnlIeC9xvvaVmSmJop | ||
8lCt04rC48Pr54M1zqm8iBfP4jUnWrmMV462H+agHu5x247A+cgwOT4CVDRJZG2O | ||
yDpXo1emoMB5vcVWlhSjbnskeX2QeeBWUioDs8vhAoGAfqe+12mU61SLbA6OkWIj | ||
SV3khJCPtIIpv2569z9jSnXqvtD1pq98Dg68xU0WhdlCT3wvSDDpjAh/ouKckas+ | ||
6s4ypDIR7gG99+xUQ+WtvgO4uqcVdy8guXbZcOLBIi9aMXsn8X97QPeT64Bkn7NO | ||
sXEkfg3twi9z01WGcfIIvhcCgYEAkUtuLVbXZMy2lXf6LKTmcKRV9cqf1j1rgEgF | ||
GVbeOdsi0aGVReLB0jC8QlosXUHKq2D6EvyliRz4Pb3/JR3NEbD/l/ERRuvVaw55 | ||
jBrh02zhI2EKOnY/hkbE3Ihrm47lzB17vVBqkMDAK5zcr7CDgfClKOsmsYhn6Yb6 | ||
TbALMOECgYEArenvgu4r2sbvjaY7KusmK9+lp7BetFW3Pf1/SI8/2MIgpY0FmVIg | ||
1rM6VODVVqUFVvteOx+fYV3/AArDXauCGj+l6Z4Nt/3pHAeXBXLVKBvW/y/Kj3J6 | ||
SHA68pV/iDIuuhMjg58wGyXpsOskJ1AfzuyXFVM2dEhyrDHDi+GsznY= | ||
-----END RSA PRIVATE KEY----- |
1 change: 1 addition & 0 deletions
1
setup/kubeadm/.vagrant/machines/master/virtualbox/synced_folders
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"virtualbox":{"/vagrant":{"guestpath":"/vagrant","hostpath":"/home/rajesh/git/brainupgrade-in/kubernetes/setup/kubeadm","disabled":false,"__vagrantfile":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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/rajesh/git/brainupgrade-in/kubernetes/setup/kubeadm |
1 change: 1 addition & 0 deletions
1
setup/kubeadm/.vagrant/machines/node01/virtualbox/action_provision
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1.5:bd5bbc96-8e3b-456e-a4a9-71adc5ca9122 |
1 change: 1 addition & 0 deletions
1
setup/kubeadm/.vagrant/machines/node01/virtualbox/action_set_name
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1673858084 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"name":"bento/ubuntu-22.04","version":"202206.13.0","provider":"virtualbox","directory":"boxes/bento-VAGRANTSLASH-ubuntu-22.04/202206.13.0/virtualbox"} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
1001 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bd5bbc96-8e3b-456e-a4a9-71adc5ca9122 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
11fecf73722945d5920b39bde00c8a54 |
27 changes: 27 additions & 0 deletions
27
setup/kubeadm/.vagrant/machines/node01/virtualbox/private_key
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
-----BEGIN RSA PRIVATE KEY----- | ||
MIIEpAIBAAKCAQEAxLZ7Bmh8Yy1g6mVCVdrA1w5W6DoeYcoCJimcMnH8bOBNQtaW | ||
xr5PzYZA2Vy6Rbo4MsXPluvVsyyqEtTSBbLXiw7xOSpTVwk8rUtCvxJlyOmRdJyU | ||
wW82m0A1eoQnLMP222TuwB7Pwzs6R1BjkdvHq34V0Srtyl+u9AoYiKMfMmCekZCo | ||
m7/MYyFYlHwHSIglYlCcb4lmbx+RyMuaU2OIdA4bQfCOwEOjiBi7klrQYxN5t+dZ | ||
vBSmTZVS7U3UnNyYIUAJv/ziMP6a4/4TXRElxAUQWiSO8EbycGQfa5+69d5ATyWV | ||
VuXKcYCYaOfuMWMihzcIIF8yaufkdBGT3/arVwIDAQABAoIBAEoZbyhPzaNSYbKJ | ||
6D4NBB0+gpBB7FXr0XlsrTD3bR3aNGBcEznUUJ1b2CvI2UYQysCdcQAp4Dr5NSuY | ||
zXBmGPmB7G4bOn+LtDaXJhJxrLPNAATMQuDGsuwyeLKo+1TKkL++Oo1WTe797YsV | ||
hhxYjNNV0IQVRrO37WByOSGnSMYho8tu4e8jf0b0RWB9mHkcMwdR87tKLwKdN8dl | ||
9l4REfpZ1AC0a6pFQwA9w+6WE3nSF9xXRUXIMlhssvTqtnZl1lLpc1RTvUbRztZe | ||
S1ZGFLRZqvjpF2c6fJ1lEuL0J9IqmpPYJTgnBoSOYnuhWz2IdS7wxlF+sKS8y5C5 | ||
Q77zOikCgYEA76cijzUcQ75EAztjR7PDOz0hy/FtObVsjOt7CwyYpFY9tEjkNox2 | ||
5xVTTZflfF4Oup6J9UTdX21B9SNylpevd7nr3RVTGLVUNx/alkqPtvaNYs/KmVSq | ||
FjGr9aHYW2167vMpurXQFnwchMjHROJ+CMRF3GFYFeMmVhgb8ougsY0CgYEA0iGE | ||
mRL1zb5uT4B98ALjy2dXs760YUV7dBBuJbDMfNF2iJtnfdPJR7hljGEJXgRmnCCk | ||
oHcI5tMP6sKMkqMLIHVEqKFB0BfdjtnaCCA1zk3k28YEzJI1XFWZNNTvsYNn8gZa | ||
RUpMEKYAIb/B2fGfFiNnFWLUXC0GoFsZvlI9zXMCgYAYEorHJceUCm2cgX+keSsY | ||
LTjS2oplLJMdyJ2Qa5B9mWgTTusVi6B578txVNupVW1XU4t6BpPR/RCOBiSBefUX | ||
KqbFi1nQdo5iByIWzKCI+VUUYtjv8/At0Il8X+hyrpmVnPlJFvAzAf5/XAegJLwS | ||
N1zpGSIW+L0mEr/j6iCXFQKBgQCSeE6nLLIt0dmujRA75qfGNqjJX9r4GqitBG7i | ||
0tQXBSKsojaHXMLmvT/7lAAlisfDeHWIbLDFxMVJjIbUB9ZPr65GJPFtDdWgJ3Z1 | ||
R4552Y33K5ZYymlrjTcXvn29rK0d5ROzTNCsoilhXPrQ4j1T/yVxoMwJ3FDMIfRV | ||
15nAxQKBgQDDDsgo7Ic/uecBt3/7rA6tdGW+FPLYID6C6qalFyxS27y9xS32PN0w | ||
hsHnCX8yMv2FgxJsXcvGN6mI/4Bfg7YfHLsyxjkQKPFwO6Evjbk5hd9PNcbBI0Hp | ||
GIuREoJdqJ52fHa+JyETUMD9VFkpDW+Oh7NrAgT6bAKJ7zt/JF0+hw== | ||
-----END RSA PRIVATE KEY----- |
1 change: 1 addition & 0 deletions
1
setup/kubeadm/.vagrant/machines/node01/virtualbox/synced_folders
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"virtualbox":{"/vagrant":{"guestpath":"/vagrant","hostpath":"/home/rajesh/git/brainupgrade-in/kubernetes/setup/kubeadm","disabled":false,"__vagrantfile":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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/home/rajesh/git/brainupgrade-in/kubernetes/setup/kubeadm |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# This file loads the proper rgloader/loader.rb file that comes packaged | ||
# with Vagrant so that encoded files can properly run with Vagrant. | ||
|
||
if ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"] | ||
require File.expand_path( | ||
"rgloader/loader", ENV["VAGRANT_INSTALLER_EMBEDDED_DIR"]) | ||
else | ||
raise "Encoded files can't be read outside of the Vagrant installer." | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
NUM_WORKER_NODES=2 | ||
IP_NW="10.0.0." | ||
IP_START=10 | ||
|
||
Vagrant.configure("2") do |config| | ||
config.vm.provision "shell", env: {"IP_NW" => IP_NW, "IP_START" => IP_START}, inline: <<-SHELL | ||
apt-get update -y | ||
echo "$IP_NW$((IP_START)) master-node" >> /etc/hosts | ||
echo "$IP_NW$((IP_START+1)) worker-node01" >> /etc/hosts | ||
echo "$IP_NW$((IP_START+2)) worker-node02" >> /etc/hosts | ||
SHELL | ||
|
||
config.vm.box = "bento/ubuntu-22.04" | ||
config.vm.box_check_update = true | ||
|
||
config.vm.define "master" do |master| | ||
master.vm.hostname = "master-node" | ||
master.vm.network "private_network", ip: IP_NW + "#{IP_START}" | ||
master.vm.provider "virtualbox" do |vb| | ||
vb.memory = 2048 | ||
vb.cpus = 2 | ||
end | ||
master.vm.provision "shell", path: "common.sh" | ||
end | ||
|
||
(1..NUM_WORKER_NODES).each do |i| | ||
|
||
config.vm.define "node0#{i}" do |node| | ||
node.vm.hostname = "worker-node0#{i}" | ||
node.vm.network "private_network", ip: IP_NW + "#{IP_START + i}" | ||
node.vm.provider "virtualbox" do |vb| | ||
vb.memory = 2048 | ||
vb.cpus = 1 | ||
end | ||
node.vm.provision "shell", path: "common.sh" | ||
end | ||
|
||
end | ||
end |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
#!/bin/bash | ||
|
||
KUBERNETES_VERSION="1.25.0-00" | ||
OS="xUbuntu_22.04" | ||
# CRI-O version | ||
VERSION="1.25" | ||
|
||
set -euxo pipefail | ||
# disable swap | ||
sudo swapoff -a | ||
|
||
(crontab -l 2>/dev/null; echo "@reboot /sbin/swapoff -a") | crontab - || true | ||
|
||
sudo apt-get update -y | ||
|
||
# Create the .conf file to load the modules at bootup | ||
cat <<EOF | sudo tee /etc/modules-load.d/crio.conf | ||
overlay | ||
br_netfilter | ||
EOF | ||
|
||
sudo modprobe overlay | ||
sudo modprobe br_netfilter | ||
|
||
# Set up required sysctl params, these persist across reboots. | ||
cat <<EOF | sudo tee /etc/sysctl.d/99-kubernetes-cri.conf | ||
net.bridge.bridge-nf-call-iptables = 1 | ||
net.ipv4.ip_forward = 1 | ||
net.bridge.bridge-nf-call-ip6tables = 1 | ||
EOF | ||
|
||
sudo sysctl --system | ||
|
||
cat <<EOF | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list | ||
deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/ / | ||
EOF | ||
cat <<EOF | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:stable:cri-o:$VERSION.list | ||
deb http://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable:/cri-o:/$VERSION/$OS/ / | ||
EOF | ||
|
||
curl -L https://download.opensuse.org/repositories/devel:kubic:libcontainers:stable:cri-o:$VERSION/$OS/Release.key | sudo apt-key --keyring /etc/apt/trusted.gpg.d/libcontainers.gpg add - | ||
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/$OS/Release.key | sudo apt-key --keyring /etc/apt/trusted.gpg.d/libcontainers.gpg add - | ||
|
||
sudo apt-get update | ||
sudo apt-get install cri-o cri-o-runc -y | ||
|
||
sudo systemctl daemon-reload | ||
sudo systemctl enable crio --now | ||
|
||
echo "CRI runtime installed susccessfully" | ||
|
||
sudo apt-get update | ||
sudo apt-get install -y apt-transport-https ca-certificates curl | ||
sudo curl -fsSLo /usr/share/keyrings/kubernetes-archive-keyring.gpg https://packages.cloud.google.com/apt/doc/apt-key.gpg | ||
|
||
echo "deb [signed-by=/usr/share/keyrings/kubernetes-archive-keyring.gpg] https://apt.kubernetes.io/ kubernetes-xenial main" | sudo tee /etc/apt/sources.list.d/kubernetes.list | ||
sudo apt-get update -y | ||
sudo apt-get install -y kubelet="$KUBERNETES_VERSION" kubectl="$KUBERNETES_VERSION" kubeadm="$KUBERNETES_VERSION" | ||
sudo apt-get update -y | ||
sudo apt-get install -y jq | ||
|
||
local_ip="$(ip --json a s | jq -r '.[] | if .ifname == "eth1" then .addr_info[] | if .family == "inet" then .local else empty end else empty end')" | ||
cat > /etc/default/kubelet << EOF | ||
KUBELET_EXTRA_ARGS=--node-ip=$local_ip | ||
EOF |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Steps to launch kubeadm cluster (1 master, 2 worker nodes) | ||
- Install Vagrant (https://developer.hashicorp.com/vagrant/downloads) | ||
- Copy Vagrantfile and common.sh from this folder to your computer say /home/kubernetes/kubeadm | ||
- Open terminal say Tab1 and `cd` where you copied above files and Run `vagrant up` | ||
- ssh into master `vagrant ssh master` | ||
- Launch cluster by initializing master node | ||
`kubeadm init --apiserver-advertise-address 10.0.0.10 --pod-network-cidr 192.168.0.1/16` | ||
- Install CNI `curl https://docs.projectcalico.org/manifests/calico.yaml -O && kubectl apply -f calico.yaml` | ||
- Get join command using this command on master `kubeadm token create --print-join-command` | ||
- Launch one more terminal tab say Tab2 & copy join command and ssh into node01 `vagrant ssh node01` | ||
- Paste the join command & hit Enter | ||
|
||
# Enable ingress & Test | ||
- Install ingress from nginx `kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.5.1/deploy/static/provider/baremetal/deploy.yaml` | ||
- Deploy hello app `kubectl create deploy hello --image brainupgrade/hello` | ||
- Expose the app as service `kubectl expose deploy hello --port 80 --target-port 8080` | ||
- Create ingress for this app `kubectl create ingress hello --rule="hello.brainupgrade.in/*=hello:80" --class nginx` | ||
- Add this line `10.0.0.10 hello.brainupgrade.in` to your /etc/hosts file on your host computer | ||
- Install nginx using `sudo apt install nginx` and then create conf `sudo vi /etc/nginx/sites-available/kubernetes.conf` with below content | ||
``` | ||
upstream kubernetes { | ||
server 10.0.0.10:<nginx ingress svc port mapped for 80>; | ||
} | ||
server { | ||
listen 80; | ||
server_name hello.brainupgrade.in; | ||
location / { | ||
proxy_http_version 1.1; | ||
proxy_connect_timeout 60s; | ||
proxy_read_timeout 60s; | ||
proxy_send_timeout 60s; | ||
client_max_body_size 1m; | ||
proxy_set_header Host $host; | ||
proxy_set_header X-Real-IP $remote_addr; | ||
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; | ||
proxy_set_header X-Forwarded-Host $host; | ||
proxy_set_header X-Forwarded-Port $server_port; | ||
proxy_set_header X-Forwarded-Proto $scheme; | ||
proxy_buffering on; | ||
proxy_pass http://kubernetes; | ||
} | ||
} | ||
``` | ||
- Enable the app URL `sudo ln -s /etc/nginx/sites-available/kubernetes.conf /etc/nginx/sites-enabled/` | ||
- Restart / reload nginx `sudo systemctl restart nginx` | ||
- kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.5.1/deploy/static/provider/baremetal/deploy.yaml |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Setup minikube cluster using vagrant & virtualbox | ||
- Run vagrant init |