Advanced Search
Search Results
25 total results found
Setup master and worker node VM's
Setup VPS and install docker (all nodes) Refer: https://projects-srv2.kondgekar.com/projects/cbofferwall/wiki/0000-preliminary-setup Fix swap (all nodes) Installing kubernetes needs swap should be disabled. Check if swap is enabled and then disable if swap ...
Setting up persistant storage using OpenEBS
Install iSCSI on all nodes Refer: https://docs.openebs.io/docs/next/prerequisites.html Install iSCSI tools if not installed sudo apt-get update sudo apt-get install open-iscsi sudo systemctl enable --now iscsid Check if iSCSI is running sudo systemctl s...
Create service account
Ref: https://computingforgeeks.com/create-admin-user-to-access-kubernetes-dashboard/ admin-sa.yml --- apiVersion: v1 kind: ServiceAccount metadata: name: techiterian-cluster-admin namespace: kube-system --- apiVersion: rbac.authorization.k8s.io/v1...
Accessing Kubernetes Dashboard
To install kubernetes dashboard on master node make sure to install it before worker nodes join k8s cluster. Obtain login token for service account (on master) SA_NAME="<service-account-name>" # eg SA_NAME="techiterian-cluster-admin" to print token kubect...
Deploy private docker registry in kubernetes
Step 1: Creating files for authentication Make a folder and open terminal within a folder created mkdir registry cd registry Create tls certificate and a key openssl req -x509 -newkey rsa:4096 -days 3650 -nodes -sha256 -keyout certs/tls.key -out certs/tls...
Installation of Ingress nginx
Refer: https://github.com/kubernetes/ingress-nginx Install using baremetal Refer: https://kubernetes.github.io/ingress-nginx/deploy/#bare-metal Download script to specific folder cd <folder-path> wget https://raw.githubusercontent.com/kubernetes/ingress-n...
Host Docker private registry using Ingress
Make sure ingress nginx is installed and following command shows external Ip assigned kubectl get services -o wide -n ingress-nginx if external ip is not assigned then nginx controller needs modifications. Refer: Ingress installation Create ingress prd-i...